Structures In C: C Tutorial In Hindi #37

  Рет қаралды 503,181

CodeWithHarry

CodeWithHarry

Күн бұрын

Пікірлер: 397
@prafulsinwalprafulsinwal3141
@prafulsinwalprafulsinwal3141 2 жыл бұрын
Thanks!
@chiteez_____1562
@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 :)
@ritikthakur4921
@ritikthakur4921 4 жыл бұрын
Underrated channel. Great explanation. 👍🏻
@Robin4lyf
@Robin4lyf Жыл бұрын
well now its of 4+ million subs
@ashmitdas2078
@ashmitdas2078 10 ай бұрын
well now its of 5+ million subs@@Robin4lyf 😅
@spidyffexe
@spidyffexe 7 ай бұрын
@@ashmitdas2078 well now about to 6m
@SaisujithNagamalla
@SaisujithNagamalla 7 ай бұрын
​@@ashmitdas2078 now 6 million plus
@Rathore.204
@Rathore.204 6 күн бұрын
Now 6.9 milion
@RahulDas-qq1uv
@RahulDas-qq1uv 3 жыл бұрын
phenomenal explanation , Highly recomended
@whoareyou45678
@whoareyou45678 2 жыл бұрын
Generally I am not prefer ppt base lectures but you explanation is enough To change my thoughts
@YashDEVELOPER12
@YashDEVELOPER12 4 жыл бұрын
Very helpful vdo sir.. Structure is so important concept in c .. aur aapne bahut easily samjhaaya hai isko.. Amazing.. thanks u so much sir
@Sirjiknp
@Sirjiknp 4 жыл бұрын
Come to teach in my college also 😂 you are great #harry
@oqant0424
@oqant0424 4 жыл бұрын
GREAT WORK MAN ....KEEP THE GD WORK DOING
@RAJPATRA_Corporate
@RAJPATRA_Corporate 4 жыл бұрын
I am studying in brainware of software engineering course But still your learning methods is world class❤️
@surajsantra6749
@surajsantra6749 2 жыл бұрын
i am also from brainware
@neerajkashyap268
@neerajkashyap268 Жыл бұрын
@@surajsantra6749 Kolkata??
@soumikpradhan6901
@soumikpradhan6901 10 ай бұрын
Me also
@suryapratap2914
@suryapratap2914 2 жыл бұрын
whenever thiings get difficult HARRY BHAI __ aap bs bne raho ,sunte rahiye dhyan se end tak --- and in the end every thing became easy🙃😉
@raghavannaidu6931
@raghavannaidu6931 4 жыл бұрын
Super Under-Rated Channel Love ur videos man superb explanation
@shivanshgoyal310
@shivanshgoyal310 4 жыл бұрын
Amazing explanation 🥺🥺💖💖
@gauravchaudhari9401
@gauravchaudhari9401 4 жыл бұрын
Great Explain sir..,,You are the Best Explainer and Technical Teacher too...
@itsmoonsault
@itsmoonsault 4 ай бұрын
Learning on KZbin with teachers like you is way more helpful and effective than wasting time in college and not understanding damn thing
@VanshPruthi-mk4pq
@VanshPruthi-mk4pq 6 ай бұрын
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; }
@mrrabbit2913
@mrrabbit2913 4 жыл бұрын
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_PATNA
@IMAN_IIT_PATNA 2 жыл бұрын
🤣🤣🤣🤣🤣
@namansharma8515
@namansharma8515 Жыл бұрын
thanks for the comments its easily readable
@mrrabbit2913
@mrrabbit2913 Жыл бұрын
@@namansharma8515 thank you 👍😊
@Mistcreation-z5s
@Mistcreation-z5s 4 жыл бұрын
Your teaching is more beautiful than my girlfroend
@tejassrivastava6971
@tejassrivastava6971 4 жыл бұрын
😂
@sooanurag
@sooanurag 3 жыл бұрын
😂😂
@smp2221
@smp2221 3 жыл бұрын
🤣🤣🤣
@tarunshakya4210
@tarunshakya4210 3 жыл бұрын
😂😂😂😂😂😂
@bill-cipher000
@bill-cipher000 3 жыл бұрын
Coders dont have a girlfriend
@pratiks29
@pratiks29 4 жыл бұрын
Harry bhai bohot mast samjhaya tune ekdum clear kar dia 👍 Pura playlist bohot sahi he thank you bhai
@krishkanojia2850
@krishkanojia2850 4 жыл бұрын
Great method of explaining.
@inayatullah2983
@inayatullah2983 2 жыл бұрын
Sir ap ki video Itni achi aur high level ke hain ki college main programming main main sab se tez hoon thanks
@gauravpatel5917
@gauravpatel5917 2 жыл бұрын
yes me bhi bro
@kimjong-un4521
@kimjong-un4521 2 жыл бұрын
this is actually best course on structure
@BrightEngineer001
@BrightEngineer001 4 ай бұрын
Justice for shubham
@Fitness_journey988
@Fitness_journey988 2 жыл бұрын
Thank u Sooo muCh Harry Bro Issi trah smjhate rahain AllaH aap ko or behtar bnaye Ameen From Pakistan🇵🇰🥰
@spoorthishet1196
@spoorthishet1196 3 жыл бұрын
you are just awesome...!!! made it very simple..
@pratikkurade1270
@pratikkurade1270 3 жыл бұрын
If you use array of structures than using for loop it will be easy. it will save some lines.
@aradhyastore8448
@aradhyastore8448 2 жыл бұрын
structure seems like objects in OOPs of other languages in which we have create an object and can change it properties
@arjunmehta8272
@arjunmehta8272 4 жыл бұрын
Love ur videos bro 😊😊❤️❤️❤️
@snehashisratna9074
@snehashisratna9074 5 жыл бұрын
#feedback Algorithm and data structure ka video banaou please....😃
@rahulmore1993
@rahulmore1993 4 жыл бұрын
thanks for u r efforts harry
@sandeeppareek8941
@sandeeppareek8941 4 жыл бұрын
// Challenge accepeted. // Author Sandeep Pareek // Purpose to solve the given quiz #include #include struct student { int rollnumber; char name[53]; int percentage; }; int main() { printf("WELCOME TO _______________ SCHOOL "); struct student s,h,a; s.rollnumber= 1; h.rollnumber= 2; a.rollnumber=3; s.percentage=73; h.percentage= 72; a.percentage= 67; strcpy(s.name,("sandy")); strcpy(h.name,("sandeep")); strcpy(a.name, ("sandu")); printf("Roll number %d\t = %s\t percentage is %d ",s.rollnumber,s.name,s.percentage); printf("Roll number %d\t = %s\t percentage is %d ",h.rollnumber,h.name,h.percentage); printf("Roll number %d\t = %s\t percentage is %d ",a.rollnumber,a.name,a.percentage); return 0; }
@anshirohilla4968
@anshirohilla4968 2 жыл бұрын
Harry while explaining Rocket science: isme koi Rocket science nahi hai 😂
@fahedshaik6212
@fahedshaik6212 3 жыл бұрын
Harry sir rocks 🤘
@reality9702
@reality9702 2 жыл бұрын
But, the problem is still there. 10,000 employees ka information agar store karna ho to kya 10,000 variables declare karna padega ??
@parvezahmad4365
@parvezahmad4365 3 жыл бұрын
Very nice explanation 😀
@janhvitolambe3331
@janhvitolambe3331 4 жыл бұрын
Harry bhai✨🔥🔥
@likhanbiswas5077
@likhanbiswas5077 6 ай бұрын
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);
@nitinbhaskar5067
@nitinbhaskar5067 Жыл бұрын
void printdata(struct Student *s) { printf("Roll no = %d ", (*s).id); printf("Name : "); puts((*s).name); printf("Marks = %d ", (*s).marks); printf("Favourite Character = %c ", (*s).fav_char); }
@arunelavarasan5458
@arunelavarasan5458 2 жыл бұрын
way of teaching is great
@mohammedashraftaj8595
@mohammedashraftaj8595 3 жыл бұрын
Explain the Array of structure and Array within a structure
@aakashkasturiyavlogs
@aakashkasturiyavlogs 5 жыл бұрын
#include #include //structure define data type struct student { int roll; char name[20]; int age; int class; }; //function struct student data() { struct student info; printf("Enter The Student's information "); printf("Enter Roll NO:"); scanf("%d",&info.roll); printf("Enter Name:"); fflush(stdin); gets(info.name); printf("Enter Age:"); scanf("%d",&info.age); printf("Enter Class:"); scanf("%d",&info.class); return(info); } //function display void display(struct student info) { printf("--------Information------- "); printf("Student Roll No is:%d ",info.roll); printf("Student Name is:"); puts(info.name); printf("Student Age is:%d ",info.age); printf("Student Class is:%d ",info.class); } //main function int main() { struct student d1; d1=data(); display(d1); return 0; }
@SadhguruKnows
@SadhguruKnows 3 жыл бұрын
Incredible
@redreline1230
@redreline1230 4 жыл бұрын
bhot badiya sir aisa content me bahar sikhane gaya tha 20,000 rupee kahe raha tha....you are the really legend thankyou harry sir.
@redreline1230
@redreline1230 2 жыл бұрын
@@gauravpatel5917 jai ne class puch 20,000 thi start j thase bhai dsa na alag
@gauravpatel5917
@gauravpatel5917 2 жыл бұрын
@@redreline1230 wich city you reside
@z7edit5
@z7edit5 3 жыл бұрын
Bro you ROCK 💀🦋
@AhmadRizviYT
@AhmadRizviYT Жыл бұрын
Bohot ache videos banae hai
@aarzoo2302
@aarzoo2302 3 жыл бұрын
Geat explanation sir thankyouuuuu!!
@Varun___
@Varun___ 2 жыл бұрын
KADAKKKKKK 🔥🔥🔥🔥🔥🔥🔥
@najmuschowdhury1766
@najmuschowdhury1766 3 жыл бұрын
hats off to harry bhaii❤️❤️
@JEMohammadAtif
@JEMohammadAtif 3 жыл бұрын
perfect content !
@harishpanpaliya5507
@harishpanpaliya5507 4 жыл бұрын
Amazing explanation But please increase the font size it is very difficulty to see the code in mobile
@technicalsupport3865
@technicalsupport3865 4 жыл бұрын
I had loved it...your explanation is too good ... Keep it up bro .....
@yashrughwani1294
@yashrughwani1294 2 жыл бұрын
Fantastic!way to awesome!!
@AmitKumar-iv7ju
@AmitKumar-iv7ju 9 ай бұрын
gjb bhai ek baar me bahut easy se smjh me aaa gya
@radium990
@radium990 2 ай бұрын
bro did got job ? i am trying to switch to IT pplese
@pallavisinghpallavisingh1786
@pallavisinghpallavisingh1786 3 жыл бұрын
Awesome bhai 😍😍
@sumitrana3048
@sumitrana3048 3 жыл бұрын
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
@pranjalgupta3295
@pranjalgupta3295 4 жыл бұрын
harry bhai data structure ki playlist bhi bana do..plz
@kishanpanchal178
@kishanpanchal178 2 жыл бұрын
Your teaching skills are Awesome.
@jyotibhakat56
@jyotibhakat56 20 күн бұрын
You explains to good
@devanshsanghi2380
@devanshsanghi2380 Жыл бұрын
This video is better than my university’s 8 sessions of 2 hours each…. 25minutes>>16hours
@shiva_gaming8122
@shiva_gaming8122 2 жыл бұрын
great broo 🤩❤️
@guptajicodes
@guptajicodes 4 жыл бұрын
Sir, can we make more structure variables using for loop ?
@professorpoke
@professorpoke Жыл бұрын
We have to use dynamic memory allocation in that case.
@swapnalikhot2291
@swapnalikhot2291 Жыл бұрын
Sir you are very great 😊
@notherealworld3260
@notherealworld3260 2 жыл бұрын
challenge completed of quick quiz #include #include struct student { int id; int marks; char fav_char; char name[34]; }; int main() { struct student prerak,krish,shubham; prerak.id = 1; krish.id = 2; shubham.id = 3; prerak.marks = 99; krish.marks = 89; shubham.marks = 79; prerak.fav_char = 'p'; krish.fav_char = 'k'; shubham.fav_char = 's'; strcpy(prerak.name,"prerak a tailor"); printf("prerak got %d marks ", prerak.marks); printf("prerak's name is : %s ", prerak.name); strcpy(krish.name,"krish d dave"); printf("krish got %d marks ", krish.marks); printf("krish's name is : %s ", krish.name); strcpy(shubham.name,"shubham k dave"); printf("shubham got %d marks ", shubham.marks); printf("shubham's name is : %s ", shubham.name); return 0; }
@anmolpurwar5675
@anmolpurwar5675 2 жыл бұрын
#include #include struct Student { int roll_no; char name[50]; float marks; }; struct Student s1, s2, s3; int main() { s1.roll_no = 1; s1.marks = 100; strcpy(s1.name, "Ravi Singh"); s2.roll_no = 2; s2.marks = 95; strcpy(s2.name, "Rohit Kumar"); s3.roll_no = 3; s3.marks = 90; strcpy(s3.name, "Shubham Patel"); printf("Data Input Successful! "); printf("Roll no. %d %s got %f marks. ", s1.roll_no, s1.name, s1.marks); printf("Roll no. %d %s got %f marks. ", s2.roll_no, s2.name, s2.marks); printf("Roll no. %d %s got %f marks. ", s3.roll_no, s3.name, s3.marks); }
@anushkamaheshwari3006
@anushkamaheshwari3006 2 жыл бұрын
Thank you so much sir❤🙌
@vijaygaming001
@vijaygaming001 Жыл бұрын
Thankss sir 💓👌🙏
@Sushant2503
@Sushant2503 4 жыл бұрын
Thank you so much for this valuable course .....
@devsinghpawar8407
@devsinghpawar8407 3 жыл бұрын
Yo yo kya maza tha yar is video pa
@ashutoshranjan5098
@ashutoshranjan5098 3 жыл бұрын
thankyou harry sir , thank you so much
@ignition01
@ignition01 4 жыл бұрын
Thanks for tutorial harry bro 👌
@Mehul11doru
@Mehul11doru Жыл бұрын
બાકી તમારી ભણાવવાની રીત ને સલામ ભાઈ 🙋‍♂️💞
@ashleshdubey358
@ashleshdubey358 2 жыл бұрын
YOURE THE BEST SIR 🙌
@SanuDas-gd9md
@SanuDas-gd9md 6 ай бұрын
Who watching this video in 2024 ❤😮
@pulkitsaini1814
@pulkitsaini1814 6 ай бұрын
👍🏼
@anshumangupta2842
@anshumangupta2842 3 жыл бұрын
Nice explanation harry bhai
@devrajbhattacharya7138
@devrajbhattacharya7138 3 жыл бұрын
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
@sarmilagautam5916
@sarmilagautam5916 3 жыл бұрын
amazing Harry...
@vasu2239
@vasu2239 2 жыл бұрын
Badiya tha explain
@punisher-pubgmobile9527
@punisher-pubgmobile9527 Жыл бұрын
Thanks bro you are helping too much
@atharvakumar4425
@atharvakumar4425 3 жыл бұрын
moj kar di such mein ❤❤
@chickujibabuaa6174
@chickujibabuaa6174 2 жыл бұрын
It's always helps me
@HarshKumar-zm1jl
@HarshKumar-zm1jl 3 жыл бұрын
Thankuuu😀😄
@mayankjindal8908
@mayankjindal8908 2 жыл бұрын
Wow! You had 28k subscribers then 😘
@Sans_K5
@Sans_K5 2 жыл бұрын
thanks_Sir💜
@kanishksolanki5949
@kanishksolanki5949 7 ай бұрын
I love you so much sir 💝💝💝💝💝💝💝💝❤️❤️❤️❤️❤️
@SahilKumar-ni7su
@SahilKumar-ni7su 4 жыл бұрын
#include struct student { int id; float marks; char fav_char; }; void main() { struct student harry, ravi, shubham; harry.id = 1; ravi.id = 2; shubham.id = 3; harry.marks = 66; ravi.marks = 466; shubham.marks = 466; harry.fav_char = 'p'; ravi.fav_char = 'p'; shubham.fav_char = 'p'; printf(" harry id is %d", harry.id); printf(" harry got %.2f marks ", harry.marks); printf(" harry's fvt character is %c", harry.fav_char); printf(" ravi id is %d ", harry.id); printf(" harry got %.2f marks ", harry.marks); printf(" harry's fvt character is %c", harry.fav_char); printf(" shubham id is %d", shubham.id); printf(" shubham got %.2f marks ", shubham.marks); printf(" shubham's fvt character is %c", shubham.fav_char); }
@deeptimidha2928
@deeptimidha2928 Жыл бұрын
too good sir
@phoenixhacker1291
@phoenixhacker1291 2 жыл бұрын
Cool bhai
@soumyashiskarmakar
@soumyashiskarmakar 5 жыл бұрын
Java tutorial please!
@thinkdaily5140
@thinkdaily5140 4 жыл бұрын
Aacha smj aaya .. Thoda function use Kar k complicated sa lag raha h😄😐
@sarveshdevrukhakar
@sarveshdevrukhakar 3 жыл бұрын
# Can we declare \ initialise the 'function ' in structure ? And did you forgot about pointers in structure ?
@chahatvamdev4088
@chahatvamdev4088 3 жыл бұрын
Thnk yu Harry Bhai
@shubhamyadav3272
@shubhamyadav3272 3 жыл бұрын
"आशा करता हूँ" Is the best line.
@vipulkumar3162
@vipulkumar3162 3 жыл бұрын
thanks harry bhai
@JYOTISHKUMAR-bu3pv
@JYOTISHKUMAR-bu3pv Жыл бұрын
Do not confused why sir was writing void print () because he was declaring a function whose name is print()...... 😊😊😊😊😊😊😊
@AnkithChowdary
@AnkithChowdary Жыл бұрын
Thank you C ke Jyotish ji 😊
@rahul4142
@rahul4142 3 жыл бұрын
That's why he's the Teacher
@anshrajput3970
@anshrajput3970 4 жыл бұрын
Great Content
@techlearner9744
@techlearner9744 2 жыл бұрын
So good ..
@shrabonisinha
@shrabonisinha Жыл бұрын
I bless you
@vishalsrivastava2012
@vishalsrivastava2012 3 жыл бұрын
amazing bro structure btech ki 4 year baad samajh aaya h ty
@animesh108
@animesh108 3 жыл бұрын
Bro live streaming Diya Karo , For doubts clearing
@NitinKumar-qk1fi
@NitinKumar-qk1fi 4 жыл бұрын
Watching your every video
@manveerbrar5258
@manveerbrar5258 3 жыл бұрын
Really awesome n exclusive explanation
Typedef In C: C Tutorial In Hindi #38
13:08
CodeWithHarry
Рет қаралды 183 М.
Unions In C: C Tutorial In Hindi #39
21:13
CodeWithHarry
Рет қаралды 199 М.
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 37 МЛН
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 56 МЛН
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 14 МЛН
Functions In C: C Tutorial In Hindi #19
25:54
CodeWithHarry
Рет қаралды 1 МЛН
Pointers In C: C Tutorial In Hindi #26
32:46
CodeWithHarry
Рет қаралды 824 М.
Strings In C: C Tutorial In Hindi #34
21:37
CodeWithHarry
Рет қаралды 415 М.
Call by Value & Call By Reference In C: C Tutorial In Hindi #31
27:30
CodeWithHarry
Рет қаралды 371 М.
Structures in One Shot | Lecture 10 | C Programming Course
3:49:11
College Wallah
Рет қаралды 544 М.
Arrays In C: C Tutorial In Hindi #23
25:45
CodeWithHarry
Рет қаралды 1,1 МЛН
My First Standup Comedy Vlog ft. @SamayRainaOfficial @KapilSharmaK9
15:24
Rajiv Thakur Comedy
Рет қаралды 1 МЛН
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 37 МЛН