C variables 💰

  Рет қаралды 78,335

Bro Code

Bro Code

Күн бұрын

Пікірлер: 127
@BroCodez
@BroCodez 3 жыл бұрын
#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; }
@cadmium4113
@cadmium4113 3 жыл бұрын
You missed a Semi colon!
@SkulzR
@SkulzR 3 жыл бұрын
S
@misterlollo5114
@misterlollo5114 3 жыл бұрын
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 🤜🤛
@realdealholyfield9616
@realdealholyfield9616 2 жыл бұрын
Who paid you to write this comment?
@misterlollo5114
@misterlollo5114 2 жыл бұрын
@@realdealholyfield9616 no one I just find his tutorials helpful
@Meteor_X
@Meteor_X 9 ай бұрын
Same bro..
@DemidCode
@DemidCode 7 ай бұрын
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)
@gambitjr8197
@gambitjr8197 3 жыл бұрын
Better than my lecturer
@BroCodez
@BroCodez 3 жыл бұрын
yay!
@integrate2945
@integrate2945 3 жыл бұрын
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
@student1999 11 ай бұрын
this is very true he deserves millions of subs
@mgrycz
@mgrycz Ай бұрын
Nice!
@klebleonard
@klebleonard 3 жыл бұрын
we appreciate your work sir 👌❤
@BroCodez
@BroCodez 3 жыл бұрын
You're welcome! I appreciate all of you checking out my videos!
@alexbertil2756
@alexbertil2756 Жыл бұрын
Thanks alot dude, made it damn easy to understand.
@logeshwaran3016
@logeshwaran3016 3 жыл бұрын
❤️ from a fellow bro ❤️
@BroCodez
@BroCodez 3 жыл бұрын
Thanks Logeshwaran!
@Balasaravanan-o1v
@Balasaravanan-o1v 7 ай бұрын
Bro iam also RCB fan from Chennai
@roy4644
@roy4644 2 жыл бұрын
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
@brianytpro8856
@brianytpro8856 3 жыл бұрын
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
@hiteshsingh347
@hiteshsingh347 17 күн бұрын
outstanding explanation bro! love from india🚩
@mikebenengtouncry3613
@mikebenengtouncry3613 3 жыл бұрын
amazing videos.
@imperatusmauser7096
@imperatusmauser7096 3 жыл бұрын
I already know C but this is just entertaining to watch
@marmikchaudhari4459
@marmikchaudhari4459 3 жыл бұрын
Man I love u thnx for your help
@leftlord
@leftlord Жыл бұрын
niceeeee
@hairdeportgeorge2590
@hairdeportgeorge2590 Жыл бұрын
Thanks
@MainulHossainAnik
@MainulHossainAnik 14 күн бұрын
🔥🔥❤❤DONE🔥🔥❤❤
@Жаннашангитбаева-н5ы
@Жаннашангитбаева-н5ы 3 жыл бұрын
Yo Bro. Can you do complete turorial about Spring Hibernate pls?) Thank you in advance
@aditya_asundi
@aditya_asundi 3 жыл бұрын
150k woo!! ur channel is on fire! congrats!
@ნიკოლოზიხაბალაშვილი
@ნიკოლოზიხაბალაშვილი 3 ай бұрын
after two years it is almost 2m😀
@erodz2240
@erodz2240 2 жыл бұрын
Thank you bro.
@andreaspatounis5674
@andreaspatounis5674 3 жыл бұрын
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)
@andreaspatounis5674
@andreaspatounis5674 3 жыл бұрын
To print it you use %u
@BroCodez
@BroCodez 3 жыл бұрын
awww shit, I forgot about _Bool! I'll have to include that in the next video about data types. Thanks for letting me know!
@andreaspatounis5674
@andreaspatounis5674 3 жыл бұрын
@@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.
@BroCodez
@BroCodez 3 жыл бұрын
@@andreaspatounis5674
@andreaspatounis5674
@andreaspatounis5674 3 жыл бұрын
@@BroCodez ah yeah right I wasn't remember it and I was going to look it when I get to my house
@astapog
@astapog Жыл бұрын
#include int main(){ printf("Poggers"); return 0; }
@CameronBaileyQuote
@CameronBaileyQuote Жыл бұрын
"C as in Charizard."-Me 🤓
@noah77
@noah77 3 жыл бұрын
how's the vacation :)?
@cadmium4113
@cadmium4113 3 жыл бұрын
Love your content!
@BroCodez
@BroCodez 3 жыл бұрын
I'm glad you enjoy it Cadmium!
@victorgallardo9409
@victorgallardo9409 8 ай бұрын
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?
@arulkumara2077
@arulkumara2077 3 жыл бұрын
Bro make Java spring framework tutorial using intellij idea....
@emperorj4783
@emperorj4783 3 жыл бұрын
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
@xelosz8442
@xelosz8442 27 күн бұрын
you're the goat OF all time ILY
@hannibalbianchi1466
@hannibalbianchi1466 3 жыл бұрын
for(int i=0 ;i
@AgadjanAnna
@AgadjanAnna 7 ай бұрын
thank you very much from Turkmenistan
@bshggaming9042
@bshggaming9042 3 жыл бұрын
teach us about kali linux
@JacobKanyikeM
@JacobKanyikeM 5 ай бұрын
broooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
@kathleenoconnell8055
@kathleenoconnell8055 Жыл бұрын
Thank you, you are very clear and concise!!!
@lam8322
@lam8322 3 жыл бұрын
Bro, do you do job like developer other than KZbinr ?
@CabalMobile-v1h
@CabalMobile-v1h Жыл бұрын
This is my comment 😅thank you bro❤
@user-ace96plays
@user-ace96plays 4 ай бұрын
DONE❤
@sylvanfranklin6904
@sylvanfranklin6904 3 жыл бұрын
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
@BroCodez
@BroCodez 3 жыл бұрын
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
@mebanteisalahe985
@mebanteisalahe985 3 жыл бұрын
How do you bring that github authentication in your vs code ?????is it necessary ?
@noy5626
@noy5626 10 күн бұрын
Poggers
@abualgasimabdulrhman3533
@abualgasimabdulrhman3533 Жыл бұрын
Thank you so much Bro code
@sina9389
@sina9389 3 жыл бұрын
👍🌷❤
@sa758
@sa758 3 ай бұрын
i love u
@AbhijeetSengar
@AbhijeetSengar 4 ай бұрын
Thanks
@freezedtv9433
@freezedtv9433 Жыл бұрын
It work on .C right ?
@photocide17
@photocide17 Жыл бұрын
#include int main(){ printf("poggers"); return 0; }
@stefansavastre702
@stefansavastre702 10 ай бұрын
random comment
@hat8694
@hat8694 Жыл бұрын
"Poggers"
@yehannk448
@yehannk448 3 жыл бұрын
Bro please can you start a php tutorial in the future
@BroCodez
@BroCodez 3 жыл бұрын
I wouldn't mind! but it depends if there's enough people that would want to learn PHP
@odreijohnpatajo
@odreijohnpatajo 2 жыл бұрын
Niceee
@mertsanl8909
@mertsanl8909 5 ай бұрын
goated
@ryanalnaser914
@ryanalnaser914 2 жыл бұрын
whatever anything
@alexandrugadja2308
@alexandrugadja2308 10 ай бұрын
poggers
@student1999
@student1999 11 ай бұрын
poggers
@roninjaeger
@roninjaeger Жыл бұрын
poggers :)
@thedivyanshbhati
@thedivyanshbhati Жыл бұрын
blah blah
@Rin-xy4tt
@Rin-xy4tt 2 жыл бұрын
I love you!
@adityadamanjodi
@adityadamanjodi Жыл бұрын
bro!!
@stanhunter7367
@stanhunter7367 2 жыл бұрын
wazzzzup!
@yasassriekanayake5058
@yasassriekanayake5058 9 ай бұрын
You made my day man thank you very much sir❤❤❤❤❤❤
@itCODE
@itCODE 3 жыл бұрын
Hi bro! Cool video !
@mollyputih4750
@mollyputih4750 3 жыл бұрын
Bro, can you put all the videos before in playlist.
@davaariantara3704
@davaariantara3704 3 жыл бұрын
gonna learn python first like you've suggest hahah, ofc with your 12-hour course. damn bro👍
@HadesTimer
@HadesTimer 3 жыл бұрын
cute dog... Thanks for the great tutorial. Enjoy your break...
@azizrahimov4602
@azizrahimov4602 3 жыл бұрын
Hi. can you do a tutorial for how to use opestreetmap offline in javaFx?
@thiemhoang3015
@thiemhoang3015 3 жыл бұрын
I wait for 1 week :(( I hope you're well bro.
@_txt_7398
@_txt_7398 2 жыл бұрын
THANK YOU VERY MUCH 👏 UR VIDEO REALLY HELPED ME🥀
@alagappank1242
@alagappank1242 3 жыл бұрын
Sir please makes c pgm videos as soon as fast... it is useful to us..🙄
@SAEID-n4r
@SAEID-n4r Жыл бұрын
❤❤❤❤❤❤
@Surgeryxperts
@Surgeryxperts 3 жыл бұрын
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
@ninavolosin598
@ninavolosin598 3 жыл бұрын
I hate that i can't support you more. You are very cool!!
@rev.sumangalabogahalande9898
@rev.sumangalabogahalande9898 3 жыл бұрын
Looking foword for a new video.
@chadmurray9506
@chadmurray9506 Жыл бұрын
once again killa video man
@spartanranger
@spartanranger 3 жыл бұрын
Thanks for the video bro
@nzn5671
@nzn5671 Жыл бұрын
you are amazing
@godovni
@godovni Жыл бұрын
wait is print the same as count?
@truongkhanguyen6241
@truongkhanguyen6241 3 жыл бұрын
Make PHP course bro :3
@rachidjabir4156
@rachidjabir4156 2 жыл бұрын
this is really helpful, appreciate it !
@kosolomon123
@kosolomon123 3 жыл бұрын
subbed, you're a legend 💪
@The_Mad-Ramx
@The_Mad-Ramx 6 ай бұрын
Sup
@KebxaiAod
@KebxaiAod 3 жыл бұрын
Thank you bro
@lavanyashivu6125
@lavanyashivu6125 3 жыл бұрын
Nice video series
@kvirupakshi3596
@kvirupakshi3596 3 жыл бұрын
Very helpful
@nihalbicer4458
@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
@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
@logicalspaghetti
@logicalspaghetti 2 ай бұрын
printf("support comment number 2 ");
@xotique2633
@xotique2633 3 жыл бұрын
Les go
@BroCodez
@BroCodez 3 жыл бұрын
o yea
@thiemhoang3015
@thiemhoang3015 3 жыл бұрын
can we have a console screen in vscode ?
@mezame2821
@mezame2821 3 жыл бұрын
Nice toturial for new programmers ty bro
@BroCodez
@BroCodez 3 жыл бұрын
thank you me zame!
@Rahul-yu3ro
@Rahul-yu3ro Жыл бұрын
4:20
@frehiwotgetachew3800
@frehiwotgetachew3800 Жыл бұрын
Random comment
@alphanongaming6191
@alphanongaming6191 3 жыл бұрын
Nice.
@BroCodez
@BroCodez 3 жыл бұрын
thanks Alphanon!
@Crimera137
@Crimera137 Жыл бұрын
am 21
@aditya_asundi
@aditya_asundi 3 жыл бұрын
Hi bro!
@BroCodez
@BroCodez 3 жыл бұрын
Heya A&A!
@Imanonymous47
@Imanonymous47 11 ай бұрын
Why me code doesnot return 0😂
@arpitsingh7267
@arpitsingh7267 3 жыл бұрын
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.
@mohansesetti6393
@mohansesetti6393 3 жыл бұрын
How to get output in vs code broi
@aditya_asundi
@aditya_asundi 3 жыл бұрын
Follow his first c video
@mohansesetti6393
@mohansesetti6393 3 жыл бұрын
@@aditya_asundi ok broo
@BroCodez
@BroCodez 3 жыл бұрын
yes
C data types 📊
11:08
Bro Code
Рет қаралды 78 М.
JavaScript VARIABLES are easy! 📦
12:49
Bro Code
Рет қаралды 65 М.
Worst flight ever
00:55
Adam W
Рет қаралды 30 МЛН
Incredible: Teacher builds airplane to teach kids behavior! #shorts
00:32
Fabiosa Stories
Рет қаралды 11 МЛН
规则,在门里生存,出来~死亡
00:33
落魄的王子
Рет қаралды 26 МЛН
小路飞嫁祸姐姐搞破坏 #路飞#海贼王
00:45
路飞与唐舞桐
Рет қаралды 12 МЛН
you will never ask about pointers again after watching this video
8:03
Scope of Variables - Local vs Global
11:12
Neso Academy
Рет қаралды 402 М.
Variables in C++
13:46
The Cherno
Рет қаралды 463 М.
Basics of variables and types | C Programming Tutorial
14:50
Portfolio Courses
Рет қаралды 17 М.
C comments & escape sequences 💬
5:05
Bro Code
Рет қаралды 52 М.
Data Types & Variables  - C Programming Tutorial #2
27:48
NeuralNine
Рет қаралды 10 М.
Learn JSON in 10 Minutes
12:00
Web Dev Simplified
Рет қаралды 3,2 МЛН
Китайцы сделали телефон БАЯН
0:14
Собиратель новостей
Рет қаралды 1,6 МЛН
Wireless switch part 177
0:58
DailyTech
Рет қаралды 3,1 МЛН
Умный обзор умного iPhone 16 / 16 Pro
21:21
Гуфовский
Рет қаралды 416 М.