Brilliant tutorial, what I didn't get in class is now clear to me by a 9 minutes video tutorial. Keep up the good work.
@hasibrahman13603 жыл бұрын
That's the exact tutorial that i was looking for ............ awsome
@pranayvaka111310 жыл бұрын
Your tutorials are just STELLAR! You have a clear voice,the narration is steady and none of your tutorials ever left me with a blank face!Your logics in those pattern tutorials is simple and easy to understand man.Please continue uploading.Just be patient and You will reach a million views soon :-)
@oliverchraizy87976 жыл бұрын
Love you dawg, going for A level practicals in 6hrs, it's 1am and I know I'm going to crush it
@lorenzozuluaga43097 жыл бұрын
wow i understand in this video more than 3 classes lol ty very much, got a new suscriber
@badis2310 жыл бұрын
thank you again for a superb video, please a video that contains structures and pointers
@nagarajkharvi90818 жыл бұрын
The Best programming video tuorials guys....Awesome....Very Happay
@MrVuthy-xt4bs9 жыл бұрын
thank you for video. but when I input full name with space like "Adimax Lee", and run it, the roll name and age don't let me input value. it just go skipped. what to fix it?
@beri41387 жыл бұрын
Mr. Vuthy When using scanf, you cannot insert a string with spaces. One workaround I know of is using fgets()
@jontillo68467 жыл бұрын
what to use instead of scanf if you enter name with spaces?
@stormbytes7 жыл бұрын
Excellent tutorial on structs. Thanks
@siddhartharao84908 жыл бұрын
Very Clear Explanation..
@mikrowellen29208 жыл бұрын
You explained structures pretty well: it's easy to understand!! I was nearly going to stop the video because your acent is a bit hard to understand, but I am glad I watched it because your explanation is just great!! Keep going! :)
@Randyorton98ful7 жыл бұрын
same here hah
@onelove-sv4vt7 жыл бұрын
what if we want to add another student data? for example s1,s2,s3,s4,s5
@ileanajackson99969 жыл бұрын
Why doesnt the scanf take in spaces in a string?
@jameschin68 жыл бұрын
+Ileana Jackson while using scanf, space in string is considered as '\0'...i.e null character
@Fogaata7 жыл бұрын
Fantastically explained, thank you!
@dharmisthasojitra75587 жыл бұрын
very use full for study ....so thank you
@HimanshuGupta-us7cu6 жыл бұрын
Its too good. Please make video for indirect recursion.
@arif-ul-islamsumon72177 жыл бұрын
It's really good for understand .Thank you
@karan1237548 жыл бұрын
why dont you need the address operator for the string?
voice is very clear at all, explanation sounds fantastic. Nice buddy! keep it up...
@harshittjaiswal5128 жыл бұрын
thankyou for this video.. all concept is clear now!
@nagarajkharvi90818 жыл бұрын
Can you upload unions in c and also difference between structures and unions....Please
@mohammedsaifali55808 жыл бұрын
Structures and Unions are almost same Syntax yet instead of struct we use union in case of unions and Memory is allocated in ascending order and move with type of data while in union there is only one memory allocated for all members
@akhileshtiwari61556 жыл бұрын
You taught so well sir
@AnujVerma108 жыл бұрын
very good bro keep going... and teach us "c" we need you...
@hymavathirayavarapu28687 жыл бұрын
Very clear topic
@rahulmotwani10717 жыл бұрын
how to use scanf function to scan float char and int value in a single statement I m getting error in it
@beri41387 жыл бұрын
rahul motwani scanf("%f %c %d")
@Amarkumar-bo5fx6 жыл бұрын
U will be successfull for your honesty
@Abdulrahman-uk9ny6 жыл бұрын
where is the next video??
@52blueberry717 жыл бұрын
thank you wethecomptuerguys...
@dheerendraa4839 жыл бұрын
good job guys!!
@narasimhavallampati27406 жыл бұрын
Thanks sir I got the basic idea for structures
@DasariChaitanyacreations8 жыл бұрын
Thanks for ur video.
@ankitjaiswal27998 жыл бұрын
Sir ! Awesome! Thank you 😊
@nagarani7637 жыл бұрын
very good tutorial
@bhoomikam24208 жыл бұрын
exelent supper understanding
@bhavindhanani60307 жыл бұрын
Thnks Good 1 dear ...
@amjedanver2229 жыл бұрын
supperb , tutorial is clear ...
@gamesedited95847 жыл бұрын
amjed anver THANKS😊
@srinivasanp20556 жыл бұрын
Make a video on command line argument
@rahulsuthar85909 жыл бұрын
y did u use %s
@joshuageorge72469 жыл бұрын
+Rahul Suthar Hmm good question, I was asking the same. So if anyone understands why, let us know!
@anakcloudifs53749 жыл бұрын
+Joshua George i think %s is for printing strings.
@SuperVishal769 жыл бұрын
+Rahul Suthar "%d" is to accept an integer, same way "%s" is to accept a string. I'd suggest using gets(string) because "%s" does not count space.
@jhalam39508 жыл бұрын
What a explanation !!!!!!!!!!!!!
@CHANDANKUMAR-pz3tv8 жыл бұрын
awesome
@MdFaisalAbeOakkasRakib8 жыл бұрын
please upload full pakage of c ... I am fan your video
@radhamehra3739 жыл бұрын
Thnkew for dis tutorial its working
@FestivalFlare4 жыл бұрын
Very nice sir 🥰😍🥰😍🥰🥰😍😍🥰🤗👌😍
@spoorthicg58165 жыл бұрын
Very nice
@Amarkumar-bo5fx6 жыл бұрын
Nice going bro..
@Mkashyap_Vlog7 жыл бұрын
good explaination
@priyastutorial87908 жыл бұрын
sir,i like your explanation and your voice is very clearly,nice job sir....sir i have one boubt why did't use & in name
@dahlizkarthalus97058 жыл бұрын
+Priya R Name is in char, and roll and age are in int, so they need &
@AnonymousAnonymous-kd2yg8 жыл бұрын
You probably found it by now if not then here is the reason . The above explanation is totally wrong by Dahliz. You have to use ampersand(&) operator to specify the memory location of the targeted Variable . You should know by now that a Variable is the named location in the Memory. We use & operator before a variable in scanf built in function is to tell the compiler to assign the value in the memory location of the targeted variable . But we don't use it with string because in C and C++ string is a single dimensional array of character variables . And the name of an array is actually a pointer to the first index of that array . So an array name already holding the address of the first index of an array . so writing "array" and "&array[0]" is same in scanf function .
@mahamudulhasanrafi35067 жыл бұрын
Many many thanks
@lindsey52365 жыл бұрын
thank u for making it
@gokulvrnair95188 жыл бұрын
suprb :)
@pavand65378 жыл бұрын
please sir try to explain with some more examples
@max221b45 жыл бұрын
thank you sir thank you
@smtasnimalam19469 жыл бұрын
thnx a lot
@chenchureddy76049 жыл бұрын
thank you sir
@ashfreak0056 жыл бұрын
This is not advanced structure programming tutorial...its very basic bro
@kvnagendra53547 жыл бұрын
Bhayya plz help me Bhayya. IAM arts student from inter to degree. In degre i did b. Com computers. I am completed c, c++, and now iam learning java. but i have a doubt. an arts students can get a software job. bro plz bro tell me how can i get a job. plz iam a quick learner and i will do whatever it takes i have passion on computers plz plz reply me bro.
@AtifImamAatuif6 жыл бұрын
Sure bro , You will get a job . Keep your resume upto date . Do some projects that try to solve real world problem . Update your codes on github . You will surely get a job . :)
@jackson-yh9vn8 жыл бұрын
good
@sankarsaikumarchenna70249 жыл бұрын
nice
@junioryao34588 жыл бұрын
gOOd
@nikhhiilreddi13716 жыл бұрын
why do you call it " Advanced" if you are explaining the basics of structures? come on bro.
@anandokumar6 жыл бұрын
True ...
@boudouaraimad94918 жыл бұрын
could i find some tutorial without the indian accent ? it's hard to understand the most of what he says
@tarajanus8 жыл бұрын
try thenewboston tutorials
@boudouaraimad94918 жыл бұрын
thank you so much
@1ali19967 жыл бұрын
no thank you
@chaabounikhaled48498 жыл бұрын
Wtf is that english ????!!!!
@Peter_19866 жыл бұрын
I tink dot diz iz suppohset too be un Indi-yaan ucksent or someting like dot.
@hasibrahman13603 жыл бұрын
That's the exact tutorial that i was looking for ............ awsome