Data Types & Variables - C Programming Tutorial #2

preview_player
Показать описание
Today we continue our C journey with variables and data types.

◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
📚 Programming Books & Merch 📚

🌐 Social Media & Contact 🌐

Рекомендации по теме
Комментарии
Автор

9:14 Damn dude never thought you would have bring that up XD

aymancassim
Автор

pls dont stop this we need this type of quality content

prodigyprogrammer
Автор

Im loving this series now i can understand even more about pc's and C

devtadeo
Автор

Thank you so much for another C programming tutorial

ftdude
Автор

Your teaching process is really amazing man 😇

Mamagarden
Автор

Here are some limit calculayion functionn to calculate the max and min using the amount of bits in number (eg an int has 32 bits).

Signed numbers:
Min = 2^(bits - 1)
Max = 2^(bits - 1) - 1

Unsigned:
Min = 0
Max = 2^bits - 1

ItsCOMMANDer_
Автор

Thank you so much for this amazing content. ❤❤

bhagyajkumarb
Автор

i know little but of AVR-C but still wanna learn about vanilla C

omidmamadi
Автор

Can you explain why memory size is so important? I now know char uses 1 byte and integer uses 2 byte, but I'm not sure what is the purpose of explaing this.

kexec.
Автор

Thanks! A very deep and good video on C.
Btw, the minimum sizeof(long) should be 4 instead of 6?

asbjchk
Автор

Will you also cover the windows 32 API functions?

sagiv
Автор

and pls i want the intermediate and advanced playlist

prodigyprogrammer
Автор

attention that for unsigned long and unsigned long long, if the number is bigger than LONG_MIN, the number has to be forced to unsigned, adding an U to the end of it: unsigned long long int really_big_number = 18446744073709551615U; 😅
Same for floats. I have to force it to float or it will assume a double and give a warning for a narrowing conversion: float real_number = 123456.789f
Plus, floats are completely unreliable (imprecise) ... Real numbers (float/double) are a rabbit hole...

QuimChaos
Автор

Your video are really good but i hate see face of youtuber can you creat a soft that can hide youtuber face on video on python please?

tcgvsocg
Автор

Please for the lessons at least, move to VScode.

orelronorelron