Structures In C: C Tutorial In Hindi #37

preview_player
Показать описание
In this series of C programming tutorial videos, I have explained you everything you need to know about C language. I hope you are enjoying this C course in Hindi.

Best Hindi Videos For Learning Programming:

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

Underrated channel.

Great explanation. 👍🏻

ritikthakur
Автор

phenomenal explanation, Highly recomended

RahulDas-qquv
Автор

Very nice video ❤ 👍👍🔥. Quiz solution :
#include <stdio.h>
#include <string.h>
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\n", std1.name);
printf("Age: %d\n", std1.age);
printf("Class: %d\n", std1.class);
printf("Section: %c\n", std1.section);
printf("Roll no: %d\n", std1.roll_no);
return 0;
}
//Thanks :)

chiteez_____
Автор

Come to teach in my college also 😂 you are great #harry

Sirjiknp
Автор

Very helpful vdo sir..
Structure is so important concept in c .. aur aapne bahut easily samjhaaya hai isko..
Amazing.. thanks u so much sir

YashDEVELOPER
Автор

Generally I am not prefer ppt base lectures but you explanation is enough
To change my thoughts

whoareyou
Автор

I am studying in brainware of software engineering course
But still your learning methods is world class❤️

RAJPATRA_Corporate
Автор

Your teaching is more beautiful than my girlfroend

AMOTIVATION-pw
Автор

GREAT WORK MAN ....KEEP THE GD WORK DOING

oqant
Автор

whenever thiings get difficult
HARRY BHAI __ aap bs bne raho, sunte rahiye dhyan se end tak ---
and in the end every thing became easy🙃😉

suryapratap
Автор

Great Explain sir.., , You are the Best Explainer and Technical Teacher too...

gauravchaudhari
Автор

Super Under-Rated Channel
Love ur videos man
superb explanation

raghavannaidu
Автор

Learning on YouTube with teachers like you is way more helpful and effective than wasting time in college and not understanding damn thing

itsmoonsault
Автор

But, the problem is still there. 10, 000 employees ka information agar store karna ho to kya 10, 000 variables declare karna padega ??

reality
Автор

structure seems like objects in OOPs of other languages in which we have create an object and can change it properties

aradhyastore
Автор

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

sumitrana
Автор

Harry bhai bohot mast samjhaya tune ekdum clear kar dia 👍
Pura playlist bohot sahi he thank you bhai

pratiks
Автор

If you use array of structures than using for loop it will be easy. it will save some lines.

pratikkurade
Автор

#feedback
Algorithm and data structure ka video banaou please....😃

snehashisratna
Автор

Sir ap ki video Itni achi aur high level ke hain ki college main programming main main sab se tez hoon thanks

inayatullah