C Programming Tutorial For Beginners: Learn C In Hindi
►TimeStamps:
00:00 – C Tutorial Introduction
02:00 – Downloading VS Code IDE
03:27 – Creating New Project in VS Code
04:00 – Installing Compiler
06:20 – Extensions in VS Code
07:25 – Creating first C Program
07:56 – Configuring VS Code settings
10:19 – Running our first program
12:08 – Understating our first C program
14:44 – Creating another C program
16:08 – Comments
17:59 – Data types
19:05 – Variables
24:14 – Sizeof() function
25:09 – Quick quiz
25:34 – Rules of defining variables
28:58 – const keyword
30:37 – Operators
42:10 – Taking user input
45:01 – Typecasting
47:02 – Decision-making (Conditional statements)
52:20 – Switch case statements
54:29 – Loops (Iterative statements)
01:00:51 – Functions
01:09:20 – Arrays
01:13:15 – Exercise of Array
01:13:35 – Pointers
01:19:18 – Strings
01:25:19 – Structures
01:31:15 – C Complete FREE Course
►Source Code:
C tutorial in hindi was one of the most requested tutorials on CodeWithHarry. Learning C in Hindi using this tutorial does not require you to know anything about programming. I will walk you through the fundamental of C language in this C tutorial. Learn C and the basics of C language using this C language in Hindi for beginners tutorial and master this beautiful language.
In this C language crash course for beginners in Hindi, I will be starting with the introduction of programming and then I will be walking you through the installation of a modern C compiler and a modern IDE & source code editor Visual Studio Code which is a powerful open source source code editor from Microsoft. C language and this C programming language tutorial will get more interesting and enjoying after we configure few shortcuts and extensions in visual studio code!
After watching this C programming course in Hindi you will be able to write powerful and logical C programs as well as solve C language interview questions. C programming is one of the best skills you can have in your resume and get your dream job in the Software industry. Go ahead, Learn C In Hindi using this C tutorials from basic to advance course and let me know how it goes!
►Click here to subscribe –
Best Hindi Videos For Learning Programming:
►Learn Python In One Video –
►Learn JavaScript in One Video –
►Learn PHP In One Video –
►Machine Learning Using Python –
►Creating & Hosting A Website (Tech Blog) Using Python –
►Advanced Python Tutorials –
►Object Oriented Programming In Python –
►Python Data Science and Big Data Tutorials –
Follow Me On Social Media
►Website (created using Flask) –
►Facebook –
►Instagram –
►Personal Facebook A/c –
Twitter –
Challenge Accepted.
A switch statement is a type of selection control mechanism used to allow the value of a variable or expression to change the control flow of program execution via search and map.
Switch statement in C tests the value of a variable and compares it with multiple cases. Once the case match is found, a block of statements associated with that particular case is executed. Each case in a block of a switch has a different name/number which is referred to as an identifier
Harry sir lot’s of love and respect for you. My name is Ramneek singh sidhu.Iam in the field of IT profession for 14 year’s. I am from Jammu City Jammu and Kashmir state India.Sir it’s always a big problem for me to understand c language through a theory and its implementation in a practical way .you make it so simple and understandable. Sir your way of teaching is awesome.Lots of Engineering students and working IT professionals are learning coding through your YouTube channel in a wonderful way.I have been awarded from Microsoft, Google, IBM , Accenture, Cisco. Sir please make more videos on coding and make the whole world feel proud through your platform even a child of 10th , 12th standard can make a good foundation in coding before joining any engineering stream.
I am watching this course in 2022 and its still very helpful to me??
Thank you so much harry brother ??
Great work Harry Bhai!! This video helped me revise all the concepts of C progg which I had studied 2 years back. Thank you!!
Sir this is so amazing. You made this language so easier ♥️
I am btech’s student, your all vdos are very helpful to me . Heartly thank you so much ?
The video is nice to brush up the things in C, if you already know the basics of C.
Thanks for such a wonderful video?
Nice sar
// The switch statement allows us to execute one code block among many alternatives.
// Else if statement is much better than switch statement
#include
int main()
{
int age;
printf(“enter your age: n”);
scanf(“%d”, &age);
switch (age)
{
case 1:
printf(“you can not drive”);
break;
case 50:
printf(“you can not drive”);
break;
default:
printf(“you can drive”);
break;
}
return 0;
}
*Thankyou so much. Also make Advance series on Python, Java, C++ etc. Also please make Dart Playlist.*
Edited: (series, Playlist)
Why do u have 3 separate course/ video for only c language
Can we know which should we refer
Harry you are amazing…..keep it on.. I am a simran from PATNA, and I am from CSE stream but don’t know programming after learning from institute…and now working as a app support ninza….your video helped me a lot. Thank a lot.
I am also from Bihar but from Ara Bhojpur
Challenge accepted
//character
printf(“the size of character is %d”,sizeof(char));
//unsigned character
printf(“the size of unsigned character is %d”,sizeof(unsigned char));
//short int
printf(“the size of short int is %d”,sizeof(short int));
The switch statement in C is an alternate to if-else-if ladder
52:00 print(“CHALLENGE ACCEPTED”)
#include
int main () {
/* local variable definition */
char grade;
printf(“PLEASE ENTER THE GRADEn”);
scanf(“%c”, &grade);
switch(grade) {
case ‘A’ :
printf(“Excellent!n” );
break;
case ‘B’ :
case ‘C’ :
printf(“Well donen” );
break;
case ‘D’ :
printf(“You passedn” );
break;
case ‘F’ :
printf(“Better try againn” );
break;
default :
printf(“Invalid graden” );
}
printf(“Your grade is %cn”, grade );
return 0;
}
#include
int main()
{
int age, marks;
printf(“ENTER YOUR AGEn”);
scanf(“%d”, &age);
printf(“ENTER YOUR MARKSn”);
scanf(“%d”, &marks);
switch (age)
{
case 42:
printf(“HE/SHE IS IN STANDERD 1STn”);
if (marks <=0 && marks <= 15) { printf("YOU ARE FAILED IN THE EXAM BY E2 GRADEn"); } else if (marks <= 35 && marks >= 15)
{
printf(“YOU ARE FAILED IN THE EXAM BY E1 GRADEn”);
}
else if (marks > 35 && marks <= 50) { printf("YOU ARE PASSED IN THE EXAM BY C2 GRADE"); } else if (marks > 50 && marks <= 60) { printf("YOU ARE PASSED IN THE EXAM BY C1 GRADE"); } else if (marks > 60 && marks >= 70)
{
printf(“YOU ARE PASSED IN THE EXAM BY B2 GRADE”);
}
else if (marks > 70 && marks <= 80) { printf("YOU ARE PASSED IN THE EXAM BY B1 GRADE"); } else if (marks > 80 && marks <= 90) { printf("YOU ARE PASSED IN THE EXAM BY A2 GRADE"); } else if (marks > 90 && marks <= 100) ; { printf("YOU ARE PASSED IN THE EXAM BY A1 GRADE"); } break; case 10: printf("HE/SHE IS IN STANDERD 10THn"); if (marks <= 35 && marks >= 15)
{
printf(“YOU ARE FAILED IN THE EXAM BY E1 GRADEn”);
}
else if (marks <= 0 && marks >= 15)
{
printf(“YOU ARE FAILED IN THE EXAM BY E2 GRADEn”);
}
else if (marks > 35 && marks <= 50) { printf("YOU ARE PASSED IN THE EXAM BY C2 GRADE"); } else if (marks > 50 && marks <= 60) { printf("YOU ARE PASSED IN THE EXAM BY C1 GRADE"); } else if (marks > 60 && marks >= 70)
{
printf(“YOU ARE PASSED IN THE EXAM BY B2 GRADE”);
}
else if (marks > 70 && marks <= 80) { printf("YOU ARE PASSED IN THE EXAM BY B1 GRADE"); } else if (marks > 80 && marks <= 90) { printf("YOU ARE PASSED IN THE EXAM BY A2 GRADE"); } else if (marks > 90 && marks <= 100) ; { printf("YOU ARE PASSED IN THE EXAM BY A1 GRADE"); } break; case 26: printf("HE/SHE IS IN COLLAGEn"); if (marks <= 35 && marks >= 15)
{
printf(“YOU ARE FAILED IN THE EXAM BY E1 GRADEn”);
}
else if (marks <= 0 && marks >= 15)
{
printf(“YOU ARE FAILED IN THE EXAM BY E2 GRADEn”);
}
else if (marks > 35 && marks <= 50) { printf("YOU ARE PASSED IN THE EXAM BY C2 GRADE"); } else if (marks > 50 && marks <= 60) { printf("YOU ARE PASSED IN THE EXAM BY C1 GRADE"); } else if (marks > 60 && marks >= 70)
{
printf(“YOU ARE PASSED IN THE EXAM BY B2 GRADE”);
}
else if (marks > 70 && marks <= 80) { printf("YOU ARE PASSED IN THE EXAM BY B1 GRADE"); } else if (marks > 80 && marks <= 90) { printf("YOU ARE PASSED IN THE EXAM BY A2 GRADE"); } else if (marks > 90 && marks <= 100) ; { printf("YOU ARE PASSED IN THE EXAM BY A1 GRADE"); } break; default: printf("dont know about themn"); break; } return 0; } harry bhai writen by me age : 15 class 9 name : farhan jamadar if you like my code plese comment on this.
I am from pune.
But from where are you.
plese bata do bhai
Sir can u upload series of Data structure, I’m waiting for it for a long time , hope it will come soon. Thanks for the all videos ?
yes bro ….
Sir, I am studying in B. Tech. In CSE.
So, I need to know all about c and c++ language that is very helpful for my course.
Thanks Harry Bhai , this helped me for the recollection of everything in C and now i can start DSA(playlist of yours) in C
Around 39:40 A=60 and B= 14, still answer came 12.
because
60= 0111100
14=0001110 now here & of both is
===0001100
which is 12. I think it will help, if you are watching full tutorial.
Thanks bro i also got that