Come to teach in my college also 😂 you are great #harry
@whoareyou456782 жыл бұрын
Generally I am not prefer ppt base lectures but you explanation is enough To change my thoughts
@YashDEVELOPER124 жыл бұрын
Very helpful vdo sir.. Structure is so important concept in c .. aur aapne bahut easily samjhaaya hai isko.. Amazing.. thanks u so much sir
@suryapratap29142 жыл бұрын
whenever thiings get difficult HARRY BHAI __ aap bs bne raho ,sunte rahiye dhyan se end tak --- and in the end every thing became easy🙃😉
@RAJPATRA_Corporate4 жыл бұрын
I am studying in brainware of software engineering course But still your learning methods is world class❤️
@surajsantra67492 жыл бұрын
i am also from brainware
@neerajkashyap268 Жыл бұрын
@@surajsantra6749 Kolkata??
@soumikpradhan690110 ай бұрын
Me also
@chiteez_____1562 Жыл бұрын
Very nice video ❤ 👍👍🔥. Quiz solution : #include #include struct student { int age; int class; int roll_no; char name[25]; char section; }; struct student std1; int main() { // Quiz: // Given below information of a student. Print them :- strcpy(std1.name, "Hari Putter"); std1.age = 16; std1.class = 11; std1.section = 'C'; std1.roll_no = 23; // Solution :- printf("Name: %s ", std1.name); printf("Age: %d ", std1.age); printf("Class: %d ", std1.class); printf("Section: %c ", std1.section); printf("Roll no: %d ", std1.roll_no); return 0; } //Thanks :)
@oqant04244 жыл бұрын
GREAT WORK MAN ....KEEP THE GD WORK DOING
@shivanshgoyal3104 жыл бұрын
Amazing explanation 🥺🥺💖💖
@itsmoonsault4 ай бұрын
Learning on KZbin with teachers like you is way more helpful and effective than wasting time in college and not understanding damn thing
@gauravchaudhari94014 жыл бұрын
Great Explain sir..,,You are the Best Explainer and Technical Teacher too...
@raghavannaidu69314 жыл бұрын
Super Under-Rated Channel Love ur videos man superb explanation
@inayatullah29832 жыл бұрын
Sir ap ki video Itni achi aur high level ke hain ki college main programming main main sab se tez hoon thanks
@gauravpatel59172 жыл бұрын
yes me bhi bro
@pratiks294 жыл бұрын
Harry bhai bohot mast samjhaya tune ekdum clear kar dia 👍 Pura playlist bohot sahi he thank you bhai
@Fitness_journey9882 жыл бұрын
Thank u Sooo muCh Harry Bro Issi trah smjhate rahain AllaH aap ko or behtar bnaye Ameen From Pakistan🇵🇰🥰
@Mistcreation-z5s4 жыл бұрын
Your teaching is more beautiful than my girlfroend
@tejassrivastava69714 жыл бұрын
😂
@sooanurag4 жыл бұрын
😂😂
@smp22213 жыл бұрын
🤣🤣🤣
@tarunshakya42103 жыл бұрын
😂😂😂😂😂😂
@bill-cipher0003 жыл бұрын
Coders dont have a girlfriend
@krishkanojia28504 жыл бұрын
Great method of explaining.
@redreline12304 жыл бұрын
bhot badiya sir aisa content me bahar sikhane gaya tha 20,000 rupee kahe raha tha....you are the really legend thankyou harry sir.
@redreline12302 жыл бұрын
@@gauravpatel5917 jai ne class puch 20,000 thi start j thase bhai dsa na alag
@gauravpatel59172 жыл бұрын
@@redreline1230 wich city you reside
@BrightEngineer0015 ай бұрын
Justice for shubham
@kimjong-un45212 жыл бұрын
this is actually best course on structure
@sumitrana30483 жыл бұрын
harry tommorow is my university exam in which unit 5 structure is also coming so please give me help by giving some notes and some useful questions
@reality97022 жыл бұрын
But, the problem is still there. 10,000 employees ka information agar store karna ho to kya 10,000 variables declare karna padega ??
@aradhyastore84482 жыл бұрын
structure seems like objects in OOPs of other languages in which we have create an object and can change it properties
@spoorthishet11963 жыл бұрын
you are just awesome...!!! made it very simple..
@pratikkurade12703 жыл бұрын
If you use array of structures than using for loop it will be easy. it will save some lines.
@anshirohilla49683 жыл бұрын
Harry while explaining Rocket science: isme koi Rocket science nahi hai 😂
@arjunmehta82724 жыл бұрын
Love ur videos bro 😊😊❤️❤️❤️
@snehashisratna90745 жыл бұрын
#feedback Algorithm and data structure ka video banaou please....😃
@AmitKumar-iv7ju9 ай бұрын
gjb bhai ek baar me bahut easy se smjh me aaa gya
@radium9903 ай бұрын
bro did got job ? i am trying to switch to IT pplese
@rahulmore19934 жыл бұрын
thanks for u r efforts harry
@guptajicodes4 жыл бұрын
Sir, can we make more structure variables using for loop ?
@professorpoke Жыл бұрын
We have to use dynamic memory allocation in that case.
@parvezahmad43653 жыл бұрын
Very nice explanation 😀
@technicalsupport38654 жыл бұрын
I had loved it...your explanation is too good ... Keep it up bro .....
@mrrabbit29134 жыл бұрын
Quick quize #include #include /*using #include becouse I use string funtion on this program to print students name*/ struct Student { //the caraibles to collect from the students int id; int marks; char fav_char; char name[34]; }; int main() { struct Student milk, cake, curry; //student names //proper data to collect from the student milk.id = 14; cake.id = 15; curry.id = 16; milk.marks = 40; cake.marks = 20; curry.marks = 46; milk.fav_char = 'm'; cake.fav_char = 'c'; curry.fav_char = 'r'; //using strings fuction bny adding #include in global strcpy(milk.name, "Milk is while in color "); strcpy(cake.name, "cake is chocolate in test "); strcpy(curry.name, "curry is best in test "); //name of the student from here printf("The name of milk is %s ", milk.name); printf("The name of cake is %s ", cake.name); printf("The name of curry is %s ", curry.name); //id of the studen from here printf("The id of milk is %d ", milk.id); printf("The id of cake is %d ", cake.id); printf("The id of curry is %d ", curry.id); //marks of the students from here printf("The marks of milk is %d ", milk.marks); printf("The marks of cake is %d ", cake.marks); printf("The makrs of curry is %d ", curry.marks); //fav_char of the students from here printf("The fav_char of milk is %c ", milk.fav_char); printf("The fav_char of cake is %c ", cake.fav_char); printf("The fav_char of curry is %c ", curry.fav_char); return 0; }
@IMAN_IIT_PATNA2 жыл бұрын
🤣🤣🤣🤣🤣
@namansharma8515 Жыл бұрын
thanks for the comments its easily readable
@mrrabbit2913 Жыл бұрын
@@namansharma8515 thank you 👍😊
@mohammedashraftaj85953 жыл бұрын
Explain the Array of structure and Array within a structure
@aarzoo23023 жыл бұрын
Geat explanation sir thankyouuuuu!!
@sarveshdevrukhakar3 жыл бұрын
# Can we declare \ initialise the 'function ' in structure ? And did you forgot about pointers in structure ?
@z7edit53 жыл бұрын
Bro you ROCK 💀🦋
@AhmadRizviYT Жыл бұрын
Bohot ache videos banae hai
@harishpanpaliya55074 жыл бұрын
Amazing explanation But please increase the font size it is very difficulty to see the code in mobile
@fahedshaik62123 жыл бұрын
Harry sir rocks 🤘
@arunelavarasan54582 жыл бұрын
way of teaching is great
@janhvitolambe33314 жыл бұрын
Harry bhai✨🔥🔥
@kishanpanchal1782 жыл бұрын
Your teaching skills are Awesome.
@pranjalgupta32954 жыл бұрын
harry bhai data structure ki playlist bhi bana do..plz
@devanshsanghi2380 Жыл бұрын
This video is better than my university’s 8 sessions of 2 hours each…. 25minutes>>16hours
@Varun___2 жыл бұрын
KADAKKKKKK 🔥🔥🔥🔥🔥🔥🔥
@Mehul11doru Жыл бұрын
બાકી તમારી ભણાવવાની રીત ને સલામ ભાઈ 🙋♂️💞
@sohelahmedkhan87562 жыл бұрын
Whenever we run new code in the terminal, whatever the old code we are running in it previosly becomes very big list in our terminal and because of this we have to scroll in the terminal to see our new output please suggest a solution to it
@devrajbhattacharya71383 жыл бұрын
Black background pe..plzz white pen use karo....black k upr red dikha nehi jata.... Btw.thanks..very much thanks..mujhe structure samaj agaya....thanks harry dada
@devsinghpawar84073 жыл бұрын
Yo yo kya maza tha yar is video pa
@vijaygaming001 Жыл бұрын
Thankss sir 💓👌🙏
@ashutoshranjan50983 жыл бұрын
thankyou harry sir , thank you so much
@najmuschowdhury17663 жыл бұрын
hats off to harry bhaii❤️❤️
@ignition014 жыл бұрын
Thanks for tutorial harry bro 👌
@Sushant25034 жыл бұрын
Thank you so much for this valuable course .....
@anushkamaheshwari30062 жыл бұрын
Thank you so much sir❤🙌
@JEMohammadAtif3 жыл бұрын
perfect content !
@likhanbiswas50776 ай бұрын
printf("a's marks is: %d a's id is:%d a's favorite character is:%c a's name is:%s", a.marks,a.id,a.fav_char,a.name);
@thinkdaily51404 жыл бұрын
Aacha smj aaya .. Thoda function use Kar k complicated sa lag raha h😄😐
@swapnalikhot2291 Жыл бұрын
Sir you are very great 😊
@shiva_gaming81222 жыл бұрын
great broo 🤩❤️
@soumyashiskarmakar5 жыл бұрын
Java tutorial please!
@punisher-pubgmobile9527 Жыл бұрын
Thanks bro you are helping too much
@vishalsrivastava20123 жыл бұрын
amazing bro structure btech ki 4 year baad samajh aaya h ty
@yashrughwani12942 жыл бұрын
Fantastic!way to awesome!!
@pallavisinghpallavisingh17863 жыл бұрын
Awesome bhai 😍😍
@atharvakumar44253 жыл бұрын
moj kar di such mein ❤❤
@mayankjindal89082 жыл бұрын
Wow! You had 28k subscribers then 😘
@JYOTISHKUMAR-bu3pv Жыл бұрын
Do not confused why sir was writing void print () because he was declaring a function whose name is print()...... 😊😊😊😊😊😊😊
@AnkithChowdary Жыл бұрын
Thank you C ke Jyotish ji 😊
@jyotibhakat5626 күн бұрын
You explains to good
@vasu22392 жыл бұрын
Badiya tha explain
@TodayContestSolution2 жыл бұрын
25:55 how solve geeks for geek problem question not understand and diff like book questions
@kanishksolanki59497 ай бұрын
I love you so much sir 💝💝💝💝💝💝💝💝❤️❤️❤️❤️❤️
@bhagatalisha2 жыл бұрын
Bhaiya, apko apni book likhni chahiye ek ♥️
@randhirupadhyay90802 жыл бұрын
Thank you sir... You made it very easy to understand.
@VanshPruthi-mk4pq7 ай бұрын
Quick Quiz solution:- #include #include struct student{ int roll; float marks; char fav_game[78]; }; int main() { // Write C code here struct student siya ,riya ,abhishek ,jadoo; siya.roll=1; siya.marks=76.786; strcpy(siya.fav_game,"Basketball"); printf("The information of siya is roll no. = %d , marks = %f , result = %s ", siya.roll, siya.marks, siya.fav_game); return 0; }
Hi , Can you give solution for example you gave to try for practice in this video ? ( QUICK QUIZ )
@HarshKumar-zm1jl3 жыл бұрын
Thankuuu😀😄
@sweett81942 жыл бұрын
What is the use of declaring variables in the small brackets like : void main(int a)
@ashleshdubey3582 жыл бұрын
YOURE THE BEST SIR 🙌
@Axey0411 ай бұрын
Is it possible to declare another structure inside the structure and if at all possible then how can we access them ??
@Pd-bh1kd6 ай бұрын
Nested
@manveerbrar52583 жыл бұрын
Really awesome n exclusive explanation
@chahatvamdev40883 жыл бұрын
Thnk yu Harry Bhai
@chickujibabuaa61742 жыл бұрын
It's always helps me
@siddheshmohite2832 жыл бұрын
Please make vedio on shortcuts of coding like using multi cursers at a time, repeating sentences..... please
@phoenixhacker12912 жыл бұрын
Cool bhai
@neerajdewangan88755 жыл бұрын
Harry Bhai Aapne Kon si pdhai ki hai jo itni acchi knowledge hai aapko......itn accha smjhate hai aap plzzz reply me
@prometheus38999 ай бұрын
can struct be defined inside the main as well or is there a particular reason to define it outside the main function ?
@hemraz8 ай бұрын
bro its up to you, you can define it anywhere you want but if you use this inside the main , the scope will be limited to only main function.
@animesh1083 жыл бұрын
Bro live streaming Diya Karo , For doubts clearing
@abhimatshrestha92543 жыл бұрын
Can we return a nested structure to a function? If yes how can it be done?
@professorpoke Жыл бұрын
Yes. The type of the function must be same as the struct you want to return. ////////////////////////////////////////////////////////////////////////////////////////////////////////////// struct Result { int sub1, sub2, sub3; double percentage; }; struct Student { char name[20]; int rollNo; struct Result marks; }; struct Student Func(char* n, int r, int s1, int s2, int s3, double p) { struct Student harry; harry.name = n; harry.rollNo = r; harry.marks.sub1 = s1; harry.marks.sub2 = s2 harry.marks.sub3 = s3; harry.marks.percentage = p; return harry; } //////////////////////////////////////////////////////////////////////////////////////////////////////////////
@sweetjimmy3 жыл бұрын
Can we create an array of a structure? Like an array containing a lot of students like harry, shubham and ravi which you showed in this video?
@muzix9955 Жыл бұрын
did u find the answer
@SanuDas-gd9md6 ай бұрын
Who watching this video in 2024 ❤😮
@pulkitsaini18146 ай бұрын
👍🏼
@sarmilagautam59163 жыл бұрын
amazing Harry...
@147_sarangrohankar6 Жыл бұрын
How to use pointer to assign structure members and how to print variable of structure using pointer????