C user input ⌨️

  Рет қаралды 61,402

Bro Code

Bro Code

Күн бұрын

Пікірлер: 55
@BroCodez
@BroCodez 3 жыл бұрын
#include #include int main(){ char name[25]; //bytes int age; printf(" What's your name?"); //scanf("%s", &name); fgets(name, 25, stdin); name[strlen(name)-1] = '\0'; printf("How old are you?"); scanf("%d", &age); printf(" Hello %s, how are you?", name); printf(" You are %d years old", age); return 0; }
@thegamingpaul3743
@thegamingpaul3743 3 жыл бұрын
how about the birthdate?
@TodiDiang
@TodiDiang Жыл бұрын
How about this #include int main() { char input1[100]; char input2[100]; printf("Input 2 (without space): "); scanf("%s", input2); printf("Input 2: %s ", input2); // Clearing input buffer while (getchar() != ' '); printf("Input 1 (with space): "); scanf("%[^ ]", input1); printf("Input 1: %s ", input1); return 0; } My friend using that code
@annoyingprecision2487
@annoyingprecision2487 Жыл бұрын
This was a splendid lesson on user input in C. Thanks a ton.
@eeneemeenee6236
@eeneemeenee6236 Жыл бұрын
i like that u mention the gap in knowledge at certain parts
@TheScissorunner
@TheScissorunner 2 жыл бұрын
Great production quality with your videos!
@shiwari1280
@shiwari1280 3 жыл бұрын
Thanks for the tutorials bro!
@sreekaraitha6615
@sreekaraitha6615 5 ай бұрын
Nice lecture
@ShStepan
@ShStepan 3 жыл бұрын
fgets(); Which autocomplete do you use for that?
@PektraNao
@PektraNao 5 ай бұрын
I have an issue where when i run the code, power shell will run in the terminal but I won't see the print line so "How old are you?", instead of seeing the line right away. a new cmd window will pop out and display "How old are you?", then I will have to type the age, then when I type the age, the new window closes and then the question "How old are you?" is written in the terminal. then I have to re-enter the age and then it shows the message You are 21 years old. How can I fix the new window popping out? I did go on code runner to checkmark for the terminal.
@jrogeet
@jrogeet 2 жыл бұрын
when i press run it direct to output and not terminal. how to run it??
@arireksaka13
@arireksaka13 Ай бұрын
If i put age first, the fgets function return an empty string and i don't have a chance to input the name. Do you know why is this happening?
@pakapeta7772
@pakapeta7772 2 жыл бұрын
Very useful, cheers mate.
@fabiovictorino350
@fabiovictorino350 3 жыл бұрын
Very simple and good.
@iasmin-i
@iasmin-i 6 ай бұрын
How do you do, fellow kids!
@not_pockchan3418
@not_pockchan3418 3 жыл бұрын
noice, the string format also doesn't seem to advanced, great teaching bro
@thiemhoang3015
@thiemhoang3015 3 жыл бұрын
how can run in the black console like visual studio ??
@redemedy8602
@redemedy8602 3 жыл бұрын
cmd in windows
@t-ree
@t-ree 3 жыл бұрын
Thank You!!
@rezuwankabir3372
@rezuwankabir3372 2 жыл бұрын
can you not just do scanf ("%s%s", &nameF, nameL) instead of using fgets?
@ghazihattab
@ghazihattab 3 жыл бұрын
ur the best :)
@azeedhazard7638
@azeedhazard7638 2 жыл бұрын
amazing bro👍
@The_Mad-Ramx
@The_Mad-Ramx 9 ай бұрын
Great
@aditya_asundi
@aditya_asundi 3 жыл бұрын
Why vscode? Why not dev-c++, vs19 or codelite?
@BroCodez
@BroCodez 3 жыл бұрын
more people are transitioning to vscode
@Unit_00
@Unit_00 3 жыл бұрын
lmao and here I am using notepad
@dxshawn532
@dxshawn532 Жыл бұрын
Those are trash
@omairtech6711
@omairtech6711 Ай бұрын
I use Vim and I like it.
@harshitpandit188
@harshitpandit188 3 жыл бұрын
Hi bro. I've been watching Java tutorial from your series only.Please help me with the setup of Java in Visual Studio Code Also are you planning any series on android development ??
@MainulHossainAnik
@MainulHossainAnik 3 ай бұрын
🔥🔥❤❤DONE🔥🔥❤❤
@SAEID-n4r
@SAEID-n4r Жыл бұрын
❤❤❤❤
@big_2361
@big_2361 3 жыл бұрын
he scanfs the string with an & and it works? how?
@redemedy8602
@redemedy8602 3 жыл бұрын
if you dont put it it will modify the pointer so...
@big_2361
@big_2361 3 жыл бұрын
@@redemedy8602 no not at all. with int or char variables you use & to get their address aka get a pointer to them and change the value at which the pointer points. if you assign a pointer to a pointer with & you will only change the pointer (you will change where it points to) and that will cause an error
@vincenzo3574
@vincenzo3574 2 жыл бұрын
It works because &array is equal to array in C, if he was using a pointer to a buffer allocated with malloc it would crash
@user-ace96plays
@user-ace96plays 7 ай бұрын
DONE❤
@cadmium4113
@cadmium4113 3 жыл бұрын
Bro❤️
@vega_yy
@vega_yy 9 ай бұрын
printf("Random comment1.2");
@pamlongwood4217
@pamlongwood4217 Жыл бұрын
legend
@Crimera137
@Crimera137 Жыл бұрын
am not 21 anymore but i pretend i still am!
@Onestonedbake
@Onestonedbake Жыл бұрын
wazzup bro code!!! im new to the community!!!
@MerryMerry632
@MerryMerry632 Жыл бұрын
@sashaktyadav7998
@sashaktyadav7998 3 жыл бұрын
I asked you a question that Which language is best for making mobile app than can control robots (Both iphone and android) ? Pls reply sir 🙏
@khahanguyen3059
@khahanguyen3059 3 жыл бұрын
how can run input in mac os, because it isn't like your video.
@felipemrj.
@felipemrj. 8 ай бұрын
yoooooooooooo
@TheArturM
@TheArturM 3 ай бұрын
DO IT
@engirckt5410
@engirckt5410 3 жыл бұрын
oh my god c is not like java at all lol
@yuhmi88
@yuhmi88 3 жыл бұрын
early!
@yuhmi88
@yuhmi88 3 жыл бұрын
thx for noticing!
@fyrukmcoo100
@fyrukmcoo100 3 жыл бұрын
:((
@sashaktyadav7998
@sashaktyadav7998 3 жыл бұрын
I asked you a question that Which language is best for making mobile app than can control robots (Both iphone and android) ? Pls reply sir 🙏
@BroCodez
@BroCodez 3 жыл бұрын
Python with Kivy framework could work
@_kaustav_gogoi_2004
@_kaustav_gogoi_2004 5 күн бұрын
C math functions 📚
2:42
Bro Code
Рет қаралды 42 М.
C pointers explained👉
8:04
Bro Code
Рет қаралды 215 М.
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
How to treat Acne💉
00:31
ISSEI / いっせい
Рет қаралды 108 МЛН
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
Be Careful When Using scanf() in C
12:22
NeuralNine
Рет қаралды 131 М.
C Tic Tac Toe game ⭕
20:08
Bro Code
Рет қаралды 179 М.
you will never ask about pointers again after watching this video
8:03
Scanf Basics: the good, the bad, and why so many pointers?
15:07
Jacob Sorber
Рет қаралды 25 М.
why do header files even exist?
10:53
Low Level
Рет қаралды 447 М.
C data types 📊
11:08
Bro Code
Рет қаралды 91 М.
How to use scanf with fgets
8:59
CodeVault
Рет қаралды 33 М.
Master Pointers in C:  10X Your C Coding!
14:12
Dave's Garage
Рет қаралды 338 М.
why do void* pointers even exist?
8:17
Low Level
Рет қаралды 400 М.
C 2D arrays ⬜
7:33
Bro Code
Рет қаралды 102 М.
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН