Login

Lost your password?
Don't have an account? Sign Up

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 –

https://www.educational.guru

25 comments

  1. Anuj Agrawal

    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.

  2. Hamro Khabar

    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

  3. ramneekssidhu

    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.

  4. Montasim

    // 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;
    }

  5. simran kumari

    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.

  6. Jay Bhanushali

    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));

  7. Aman Shrivastava

    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;
    }

  8. Faruk Jamadar

    #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.

  9. Shubham Kumar

    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.

Leave a Comment

Your email address will not be published. Required fields are marked *

*
*