#include int main(){ // variable = Allocated space in memory to store a value. // We refer to a variable's name to access the stored value. // That variable now behaves as if it was the value it contains. // BUT we need to declare what type of data we are storing. int x; //declaration x = 123; //initialization int y = 321; //declaration + initialization int age = 21; //integer float gpa = 2.05; //floating point number char grade = 'C'; //single character char name[] = "Bro"; //array of characters // % = format specifier printf("Hello %s ", name); printf("You are %d years old ", age); printf("Your average grade is %c ", grade); printf("Your gpa is %f ", gpa); return 0; }
@cadmium41133 жыл бұрын
You missed a Semi colon!
@SkulzR3 жыл бұрын
S
@marcobeggiato5597Ай бұрын
bro is the real giga chad
@radwoayaancabdicaziz397921 күн бұрын
Hello sir Iam somali guy and liked your course Iam learn university and I'm computer science and don't have computer😢
@misterlollo51143 жыл бұрын
Thanks dude, im just 14 myself and English isnt even my first language, i tried multiple KZbinrs explaining C (some even for money) non of them worked for me. Then i stumbled apon you, i learned more from you in 2 Weeks than from 10 KZbinrs in 6,5 months. Thx Bro 🤜🤛
@realdealholyfield96163 жыл бұрын
Who paid you to write this comment?
@misterlollo51143 жыл бұрын
@@realdealholyfield9616 no one I just find his tutorials helpful
@Meteor_X11 ай бұрын
Same bro..
@DemidCode10 ай бұрын
i'm 14 now, also learning c. I have learned python and created a lot of games with pygame (some complicated, some easy). Also english not my first language first! This man is explaining all really well)
@klebleonard3 жыл бұрын
we appreciate your work sir 👌❤
@BroCodez3 жыл бұрын
You're welcome! I appreciate all of you checking out my videos!
@aditya_asundi3 жыл бұрын
150k woo!! ur channel is on fire! congrats!
@ნიკოლოზიხაბალაშვილი5 ай бұрын
after two years it is almost 2m😀
@gambitjr81973 жыл бұрын
Better than my lecturer
@BroCodez3 жыл бұрын
yay!
@hiteshsingh3473 ай бұрын
outstanding explanation bro! love from india🚩
@roy46442 жыл бұрын
I knew all this but one thing it really helped me it was the array I didn't know and the%s this is so helpful thank you so much for you video and the time you take to teach I love learning I usually learn from a book but Im still trying to come up with a solid plan to completely learn c programming thank you bro
@kathleenoconnell8055 Жыл бұрын
Thank you, you are very clear and concise!!!
@imperatusmauser70963 жыл бұрын
I already know C but this is just entertaining to watch
@pujadebb3 күн бұрын
This helped a ton, thank you so much.
@logeshwaran30163 жыл бұрын
❤️ from a fellow bro ❤️
@BroCodez3 жыл бұрын
Thanks Logeshwaran!
@Balasaravanan-o1v9 ай бұрын
Bro iam also RCB fan from Chennai
@cadmium41133 жыл бұрын
Love your content!
@BroCodez3 жыл бұрын
I'm glad you enjoy it Cadmium!
@andreaspatounis56743 жыл бұрын
There is a Boolean data type in c, you have to write "_Bool" and you can only set it to either 0 or 1 (not true or false)
@andreaspatounis56743 жыл бұрын
To print it you use %u
@BroCodez3 жыл бұрын
awww shit, I forgot about _Bool! I'll have to include that in the next video about data types. Thanks for letting me know!
@andreaspatounis56743 жыл бұрын
@@BroCodez there is also an header file so that you can use true and false. I will let you know about this in about an hour.
@BroCodez3 жыл бұрын
@@andreaspatounis5674
@andreaspatounis56743 жыл бұрын
@@BroCodez ah yeah right I wasn't remember it and I was going to look it when I get to my house
@xelosz84423 ай бұрын
you're the goat OF all time ILY
@HadesTimer3 жыл бұрын
cute dog... Thanks for the great tutorial. Enjoy your break...
@integrate29453 жыл бұрын
Bro... I have been following you for a long time(When you had only 21k subscribers), I genuinely believe that you deserve millions of subscribers.. I like ..no.. I actually love your explanation.. please bring detail(begginer to advance level) lecture about" pointer in c++", Also please add more vedioes on "data structure and algorithm topic(C++)." Please.. You should upload more and more vedioes 😭😭😭
@student1999 Жыл бұрын
this is very true he deserves millions of subs
@ninavolosin5983 жыл бұрын
I hate that i can't support you more. You are very cool!!
@piotrmazgaj2 ай бұрын
This is my seal. I have watched the entire video, understood it, and I can explain it in my own words, thus I have gained knowledge. This is my seal.
@mikebenengtouncry36133 жыл бұрын
amazing videos.
@emperorj47833 жыл бұрын
Hey Bro! I love your videos. They don't need a dislike button! So can you make a tutorial on either Java or C# networking? It would be great! :D
@alexbertil2756 Жыл бұрын
Thanks alot dude, made it damn easy to understand.
@lavanyashivu61253 жыл бұрын
Nice video series
@kvirupakshi35963 жыл бұрын
Very helpful
@chadmurray9506 Жыл бұрын
once again killa video man
@itCODE3 жыл бұрын
Hi bro! Cool video !
@Surgeryxperts3 жыл бұрын
Bro I appreciate your videos a lot and they are a great teacher for me. Can you please make a tetris game in java swing because in other videos they dont explain the things clearly
@mgrycz3 ай бұрын
Nice!
@rachidjabir41562 жыл бұрын
this is really helpful, appreciate it !
@yasassriekanayake505811 ай бұрын
You made my day man thank you very much sir❤❤❤❤❤❤
@_txt_73982 жыл бұрын
THANK YOU VERY MUCH 👏 UR VIDEO REALLY HELPED ME🥀
@AgadjanAnna9 ай бұрын
thank you very much from Turkmenistan
@kosolomon1233 жыл бұрын
subbed, you're a legend 💪
@photocide17 Жыл бұрын
#include int main(){ printf("poggers"); return 0; }
@mezame28213 жыл бұрын
Nice toturial for new programmers ty bro
@BroCodez3 жыл бұрын
thank you me zame!
@spartanranger3 жыл бұрын
Thanks for the video bro
@CameronBaileyQuote Жыл бұрын
"C as in Charizard."-Me 🤓
@CabalMobile-v1h Жыл бұрын
This is my comment 😅thank you bro❤
@hairdeportgeorge2590 Жыл бұрын
Thanks
@nzn5671 Жыл бұрын
you are amazing
@brianytpro88563 жыл бұрын
Can you make course about making some 3D program? I want it! By the way i'm already subcribe you because i like your course
@MainulHossainAnik2 ай бұрын
🔥🔥❤❤DONE🔥🔥❤❤
@hannibalbianchi14663 жыл бұрын
for(int i=0 ;i
@erodz22402 жыл бұрын
Thank you bro.
@KebxaiAod3 жыл бұрын
Thank you bro
@davaariantara37043 жыл бұрын
gonna learn python first like you've suggest hahah, ofc with your 12-hour course. damn bro👍
@user-ace96plays7 ай бұрын
DONE❤
@DepthGamer-fe4wp2 ай бұрын
Thanks sir 🫡
@marmikchaudhari44593 жыл бұрын
Man I love u thnx for your help
@Synctw1zzy3 жыл бұрын
Nice.
@BroCodez3 жыл бұрын
thanks Alphanon!
@azizrahimov46023 жыл бұрын
Hi. can you do a tutorial for how to use opestreetmap offline in javaFx?
@logicalspaghetti4 ай бұрын
printf("support comment number 2 ");
@Жаннашангитбаева-н5ы3 жыл бұрын
Yo Bro. Can you do complete turorial about Spring Hibernate pls?) Thank you in advance
@SAEID-n4r Жыл бұрын
❤❤❤❤❤❤
@nihalbicer4458 Жыл бұрын
Is there a reason why we label name as %s, age as %d and average grade as %c? Are these kind of rules we must follow? @Bro Code
@mechagear4819 Жыл бұрын
Yes, for integers (the age) we use %d. For a single character (grade) we use %c and for a string (name) we use %s
@mebanteisalahe9853 жыл бұрын
How do you bring that github authentication in your vs code ?????is it necessary ?
@yehannk4483 жыл бұрын
Bro please can you start a php tutorial in the future
@BroCodez3 жыл бұрын
I wouldn't mind! but it depends if there's enough people that would want to learn PHP
@weepingangel4638Ай бұрын
thanks
@arpitsingh72673 жыл бұрын
Pls pls build a course on Django bro, pls really required , you teaches the best, I understand everything much better from u and don't want to go anywhere else to learn Django, pls make a course on Django.
@rev.sumangalabogahalande98983 жыл бұрын
Looking foword for a new video.
@arulkumara20773 жыл бұрын
Bro make Java spring framework tutorial using intellij idea....
@alagappank12423 жыл бұрын
Sir please makes c pgm videos as soon as fast... it is useful to us..🙄
@noah773 жыл бұрын
how's the vacation :)?
@leftlord Жыл бұрын
niceeeee
@odreijohnpatajo2 жыл бұрын
Niceee
@astapog Жыл бұрын
#include int main(){ printf("Poggers"); return 0; }
@mollyputih47503 жыл бұрын
Bro, can you put all the videos before in playlist.
@sylvanfranklin69043 жыл бұрын
I kinda want to learn c family but Idk what I really want to do with programming and my computer isn’t good enough to run unity
@BroCodez3 жыл бұрын
Try creating different projects and see what interests you. I found out that I don't enjoy game dev that much after making a few games, but I do have an interest in web design
@stanhunter73672 жыл бұрын
wazzzzup!
@lam83223 жыл бұрын
Bro, do you do job like developer other than KZbinr ?
@truongkhanguyen62413 жыл бұрын
Make PHP course bro :3
@Rin-xy4tt2 жыл бұрын
I love you!
@Madsun2622 ай бұрын
this guy is a legand
@abualgasimabdulrhman3533 Жыл бұрын
Thank you so much Bro code
@bshggaming90423 жыл бұрын
teach us about kali linux
@victorgallardo940911 ай бұрын
Great content bro! I have a problem.... when i run the code on my end, for "gpa" instead of printing "2.05000"... i got 0.0000. Does any one know why?