#include int main(){ // format specifier % = defines and formats a type of data to be displayed // %c = character // %s = string (array of characters) // %f = float // %lf = double // %d = integer // %.1 = decimal precision // %1 = minimum field width // %- = left align float item1 = 5.75; float item2 = 10.00; float item3 = 100.99; printf("Item 1: $%8.2f ", item1); printf("Item 2: $%8.2f ", item2); printf("Item 3: $%8.2f ", item3); return 0; }
@thanhduoc53123 жыл бұрын
Good. Thank you for you :)
@-CmonMeow3 жыл бұрын
no %x02, or ll? :D
@UracromToromag Жыл бұрын
I think you are the best C explainer in KZbin. I'm subscribed and enjoying very much. I'll follow your Course to the end because of it.
@yesh4203 ай бұрын
hows your learning going?
@laerciomassapa71183 жыл бұрын
C was the first language I learnt, Nice video. From Mozambique.
@CruelCDO9 ай бұрын
Straight to the point, love that. Congrats, bro!
@mebanteisalahe9853 жыл бұрын
most of the videos are very short and easily understandable ! Thankyou for your efforts BRO!!!
@cayden92243 жыл бұрын
Yes more c tutorials!!!
@CapybaraGamingChannel27 күн бұрын
good info very well presented
@សម្បត្តិដាណែត2 жыл бұрын
your explain is very good i will watch all your videos
@brianmanoti6030 Жыл бұрын
the explanation is on another level...you helped me a lot brother thankyou👏👏
@vidhukant10733 жыл бұрын
Hey Bro! Love your videos, really helped me learn java. I'd love to see functional programming videos on your channel after C, if that's possible (thanks for the content btw)
@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.
@BugbountyPOCs412 жыл бұрын
Great!!! you tutorials and videos have helped me a alot great explaination :) you deserve 1 million subs man again Thanks!
@capainsharp14474 ай бұрын
I made it here very quickly. I hope you stream soon
@hat86942 жыл бұрын
format specifiers are cool :)
@studio_102_Ай бұрын
Can you explain what are the uses of the minimum field length specifier. I understand what it does but what can we use it for in terms of writing a code?
@amayrali22399 ай бұрын
printf("You're too good bro!");
@RajeshMondal3 жыл бұрын
-ve sign is sometimes very useful.
@msliyanage8411 Жыл бұрын
Understood 🤗❤ thanks
@mosopefoluwaadebawojo35432 жыл бұрын
Bro code thanks 💯. You just made my day
@paolobena Жыл бұрын
Great video!
@raffawinters2 жыл бұрын
printf("cool");
@WINDOWSUSER-q4s7 ай бұрын
#include int main(){ printf("cool"); return 0; }
@saichand.k78442 ай бұрын
cool
@ondralight411 Жыл бұрын
really helped me man, thanks
@fernandocamarena56343 ай бұрын
i know the syntax is similar but is it the same for java ?
@oximas-oe9vf2 жыл бұрын
learning C at the speed of light
@kshitijshah77445 ай бұрын
0:32 %lf = double float
@user-ace96plays7 ай бұрын
DONE❤
@loverboykimi3 жыл бұрын
very handy.. Thanks.
@FiratC.Ай бұрын
Thanks a lot bro.
@DepthGamer-fe4wp2 ай бұрын
Thank you sir 🫡
@quantaburocracia96837 ай бұрын
A million of likes
@okiukz34262 жыл бұрын
Hello Bro, hi everyone. So in the previous video, you said % is used to display the value of a variable. Here in this video, you said $ is used to insert a value wherever we want. I'm a bit confused. What's the difference?
@MrX-zf5gl Жыл бұрын
no he just used $ to represent money , it doesn't really have any co-relation to the value itself
@dkp8230 Жыл бұрын
As the person above me said, the $ is just there to represent money, the code still runs without it
@yesh4203 ай бұрын
@@MrX-zf5gl ohh lmao i was confused aswell, thanks
@multicitygirl55273 жыл бұрын
thanks for the useful video!!!
@kchege-y9z27 күн бұрын
Thanks Bro.
@dr.x13822 жыл бұрын
super
@MainulHossainAnik2 ай бұрын
🔥🔥❤❤DONE🔥🔥❤❤
@kendalwilliams51289 ай бұрын
thanks!
@SAEID-n4r Жыл бұрын
❤❤❤❤❤❤❤
@kapebreak Жыл бұрын
THANK YOU BRO
@1antony0729 ай бұрын
🙏
@devakinandan232 жыл бұрын
thanks a lot
@leftlord Жыл бұрын
@cadmium41133 жыл бұрын
Comment from your regular viewer 🙂
@timesweird94422 жыл бұрын
how can i format 1000 to 1.000 easily in C specially with ,
@adnanzahran4672 жыл бұрын
ily bro
@nameiscarl7180Ай бұрын
coolio
@tommyispog80263 жыл бұрын
Hi again
@azeedhazard76382 жыл бұрын
👍
@student1999 Жыл бұрын
printf("code");
@Rin-xy4tt2 жыл бұрын
I love you
@TheArturM3 ай бұрын
printf("cok");
@MauriceRonald2 ай бұрын
264 Reichert Course
@The_Mad-Ramx8 ай бұрын
Eho?
@vladnistor28643 жыл бұрын
11 seconds ago. Respect!
@chocolateparfait9937 Жыл бұрын
what the fuck is %.2hx
@jeremyrecker4081 Жыл бұрын
Random
@Santos_S._D Жыл бұрын
#include int main() { char comment[] = "cool!"; printf("%s",comment); }