C Programming Tutorial # 47 - Disadvantages of an Array [HD]

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

These are the greatest C video lectures that I have ever seen.The voice and picture quality is great!!!
Thanks a lotttt Sir for this.You helped me in my exams...
Please teach some more languages too.

amitech
Автор

Thank you for continuing to make this great tutorials.

Besparica
Автор

Yay i learned more from your tutorials than i had in class! thank you!!!

emoob
Автор

Respected sir, thanks a lot for these excellent lectures. I can see your Great effort behind making these videos.

lakshmikanth
Автор

@Besparica Thank you for watching them.

Learnorama
Автор

Assalamu alaikum brother sohail you have created the best tutorial for c programming and you have literally saved me in my exams learned c in just 10 days that was just awesome, you are awesome, the only trouble i got was that some of your videos are not uploaded in full that was a little set back I wish you upload the same for free as well. that would be so helpful if you do so... may Allah bless you...

BilalChoudhury
Автор

wow thanks man for helping me with c this was the programming language  i thought i never gonna learn this but u made this simple keep giving updates thanks a lot

anilrana
Автор

No. As per the C89, C99, C++03, and C++11 standards, the size of all the integral types is mostly left to the implementation to define with the exception of char. Char shall be large enough to store any member of the impl's basic character set. From there, short, int, long int, and long long int are completely up to the implementer. The only rule is that each type must be at least as long as the preceding type.

cstubing
Автор

The number of bits in a char is defined by CHAR_BIT in stdint.h in C and climits in C++. The byte size of each type can be obtained by sizeof(type) in both languages, and again is implementation-specific, NOT standard. Proper code does not assume these sizes. Rather, it refers to the definitions in these headers. How many bits in an int in your C implementation? #include "stdint.h" \ size_t int_bit_len = sizeof(int) * CHAR_BIT; These are obtained in correct code at compile time.

cstubing
Автор

I have a doubt, can we create windows in c programming?
Can we use c to create a pages, buttons etc?
If possible can u please give us one tutorial how to create a page in C Programming.

Rakesh Babu

rakesha
Автор

Can you please post the link of C++ tutorials..?

robinsoren
Автор

@bondservant4Him That's absolutely correct.

Learnorama
Автор

yeah but malloc solves the fixed array size problem correct?

bondservantHim
Автор

Hello sir, where is the next set of videos???

navpap