C Language Tutorial for Beginners (With Notes) 🔥

Поділитися
Вставка
  • Опубліковано 1 гру 2024

КОМЕНТАРІ • 2,1 тис.

  • @ProgrammingWithHarry
    @ProgrammingWithHarry  3 роки тому +971

    Hope you like this video. I can't express in words the amount of time and effort it took to record this 11-hour long tutorial.
    The goal was to cover every topic and keep everything short and to the point as much as possible!

    • @user-me9vo2pf9r
      @user-me9vo2pf9r 3 роки тому +8

      Yes thank you for this course.

    • @sedigar2143
      @sedigar2143 3 роки тому +7

      Damn helpful!!!

    • @khizrshaikh9902
      @khizrshaikh9902 3 роки тому +7

      *_That was what I thinking_*
      *_That harry bro is busy in witch one video course_*
      *_We really appreciate you time, effort and hard word for us_*

    • @mk-ov4js
      @mk-ov4js 3 роки тому +4

      Its good that you are focusing on your english channel..Waiting for react js in english..Thank u bro.

    • @emonymph6911
      @emonymph6911 3 роки тому +2

      Welcome back to youtube Harry!!

  • @omazchannel8710
    @omazchannel8710 2 роки тому +43

    Thank you harry, the answer to Chapter 1 - Practice Set: 00:56:40 is 24. Thanks a million.

  • @CricketWithHarris
    @CricketWithHarris 3 роки тому +68

    Harry brother, I was always afraid of coding, never been taught about coding the way you do. special love for you from bottom of my heart. your way of explaining is on another level and you also motivate along. Best tutor On Programming. now it feels like I can play with codes and stuff.. all credits to you

  • @eze_uju
    @eze_uju 2 роки тому +41

    Commenting from Nigeria in 2022. I haven't gone far with the tutorial yet but, I want to say a big thank you!!. Your teaching style, humility, intellect, passion and energy is one of the best I've seen so far. I will definitely recommend to my friends. God bless.

  • @tadicherlachandini3953
    @tadicherlachandini3953 2 роки тому +24

    1:09:15
    Question 4
    The answer is 24 sir
    #include
    int main()
    {
    //p*r*t/100
    int p =100;
    int r = 6;
    int t =4;
    printf("The simple interest for a set of values representing principle is %d",p*r*t/100);
    }

  • @ashishrao5323
    @ashishrao5323 3 роки тому +570

    OMG 11hr .
    Thank you so much Harry bhai.
    This is so much Helpful especially for
    SOUTH INDIAN students.
    🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻

    • @ranjumondal3234
      @ranjumondal3234 3 роки тому +8

      Vi why for south Indian only?😮

    • @parthaprotimdeuri8681
      @parthaprotimdeuri8681 3 роки тому +60

      @@ranjumondal3234 bro ....south India me kai logo ko hindi acche se smjh nehi aati... That's why it's helpful for them.

    • @vaibhav2517
      @vaibhav2517 3 роки тому +5

      I can't install mingw on my pc. Plzz tell any alternative. 🙏🙏🙏🙏🙏

    • @chakrabartisayantan4013
      @chakrabartisayantan4013 3 роки тому

      @@vaibhav2517 see edit path variable video of padhega india channel

    • @arpitpatra3301
      @arpitpatra3301 3 роки тому +10

      Bro don't divide INDIAN as by telling SOUTH INDIAN:):)

  • @antoniokhan9367
    @antoniokhan9367 3 роки тому +216

    I can confidently tell that this is a very underrated channel and obviously this video. Harry sir has put huge efforts in making this video + making handwritten notes which will give you a mind blowing startup in programming and make you a very good programmer in C language. Harry sir is the best.
    Completed the complete video and no doubt, I will recommend you to watch this video.

  • @targetjee6617
    @targetjee6617 3 роки тому +49

    Questions which were to be commented :
    1:09:40
    // Calculate Simple Intrest
    #include
    int main()
    {
    int p;
    int t;
    int r;
    printf("Enter Principal Amount
    ");
    scanf("%d",&p);
    printf("Enter No. of years
    ");
    scanf("%d",&t);
    printf("Please Enter Rate of Interest
    ");
    scanf("%d",&r);
    printf("Total Intrest is equal to %d
    ", (p*r*t)/100);
    return 0;
    }
    1:37:42
    // Check if the number is divisible by 97 by taking input from the user
    #include
    int main()
    {
    int a;
    printf("Enter the number
    ");
    scanf("%d",&a);
    if (a%97==0)
    {
    printf("The number %d is divisible by 97
    ",a);
    }
    else
    {
    printf("The number %d is not divisible by 97
    ",a);
    }
    return 0;
    }

    • @apurvadhirde5888
      @apurvadhirde5888 3 роки тому +10

      Timestamp :- 01.09.50
      include
      int main()
      {
      int p,r,t;
      printf("Enter the value of P,R,T");
      scanf("%d %d %d",&p,&r,&t);
      printf("the SI=%d",p*r*t/100);
      return 0;
      }

    • @SanthoshGuguloth-qd5po
      @SanthoshGuguloth-qd5po Рік тому

      2:52

    • @shivaprasad4902
      @shivaprasad4902 8 місяців тому

      @@apurvadhirde5888forgot to write # in include

  • @ziaurrahman-xr6mm
    @ziaurrahman-xr6mm Рік тому +4

    1:09:58, The simple interest amount for 100 principal amount, 4 years and 6% interest rate is 24. Thanks for this nice course. The code is follows;
    #include
    int main()
    {
    int p;
    int t;
    float r;
    printf("Enter the value of principal amount ");
    scanf("%d", &p);
    printf("Enter the number of years ");
    scanf("%d", &t);
    printf("Enter the the interest rate ");
    scanf("%f", &r);
    printf("The interest amount is %f", (p*t*(r/100)));
    return(0);
    }

  • @polireddyviza130
    @polireddyviza130 6 місяців тому +136

    Anyone who passed class 12 this year

  • @aishatadedeji6867
    @aishatadedeji6867 2 роки тому +16

    This is the most straightforward lesson on C that I have encountered. The lessons and practice sets are the best for beginners to follow. Thank you for this. Currently on chapter 4.

  • @Karma_9913
    @Karma_9913 2 роки тому +7

    3:32:02 Note it prints till n-1 nos in order to print n nos change the condition from i

  • @sreeramvavilala3488
    @sreeramvavilala3488 3 роки тому +240

    This is called hard work. To make tutorials in multiple languages and at the same time explain it in multiple languages... Boht hard! Keep it up! 🎉🎉🎉🎉🎉

    • @vaibhav2517
      @vaibhav2517 3 роки тому +2

      I can't install mingw on my pc. Plzz tell any alternative. 🙏🙏🙏🙏🙏

    • @lucifer_morningstar..
      @lucifer_morningstar.. 2 роки тому

      @@vaibhav2517 CODE BLOCKS

    • @siddhant1048
      @siddhant1048 2 роки тому +1

      @@vaibhav2517 bhai sirf practise karni ho toh online c compiler dalo chrome mein aur koi bhi compiler se shuru kar do programming. ye vscode ki filhal jarurat nhi h

    • @vinicharlie-jy3fy
      @vinicharlie-jy3fy 2 роки тому

      Tqq sir

    • @manoharikandasamy799
      @manoharikandasamy799 4 місяці тому +1

      ​@@vinicharlie-jy3fyshe's a woman

  • @ziaurrahman-xr6mm
    @ziaurrahman-xr6mm Рік тому +16

    2:20:16, Quiz: Write a programme to find the grade of a student. Here below is the programme;
    #include
    int main()
    {
    float marks;
    printf("Enter your marks percentage ");
    scanf("%f", &marks);
    if (marks>100)
    {
    printf("The marks given is out of range");
    }
    else if (marks>=90 && marks=80 && marks=70 && marks=60 && marks=0 && marks

  • @devanshsinghparmar
    @devanshsinghparmar 3 роки тому +242

    Harry bhai is doing a lot of hard work, along with react course he did this also, bhai no words

    • @vaibhav2517
      @vaibhav2517 3 роки тому +3

      I can't install mingw on my pc. Plzz tell any alternative. 🙏🙏🙏🙏🙏

    • @633_ayushanand9
      @633_ayushanand9 3 роки тому +2

      @@vaibhav2517 watch aman dhattarwal video

    • @rupambanerjee7575
      @rupambanerjee7575 2 роки тому

      @@vaibhav2517 bhai mere se bhi nhi horha tha but is video ka pura step follow kro hojayega

    • @Himanshu-bn2hu
      @Himanshu-bn2hu 2 роки тому

      And also he made a same course in hindi too ❤

    • @mwah5980
      @mwah5980 2 роки тому

      Learn python with me
      ua-cam.com/video/5lLkLi9SAlA/v-deo.html

  • @psyquber7991
    @psyquber7991 3 роки тому +11

    hi Harry sir on the time stamp 4:11:10
    the Q.11 code is
    FOR WHILE LOOP
    #include
    int main() {
    int i = 2, n = 5, isPrime = 1;
    while(i < n)
    {
    if(n%i == 0)
    {
    isPrime = 0;
    break;
    }
    i++;
    }
    if(isPrime){
    printf("the number is prime
    ");
    }
    else{
    printf("the number is not prime
    ");
    }
    return 0;
    }
    FOR DO-WHILE LOOP
    #include
    int main(){
    int i = 2, n = 8, isPrime = 1;
    do{
    if(n%i == 0)
    {
    isPrime = 0;
    break;
    }
    i++;
    }while(i < n);
    if(isPrime){
    printf("the number is prime
    ");
    }
    else{
    printf("the number is not prime
    ");
    }
    return 0;
    }

    • @IndhusriKancha
      @IndhusriKancha 3 місяці тому

      in the code while we are we using do-while loop it is not showing the output correctly

  • @psyquber7991
    @psyquber7991 3 роки тому +6

    hi harry sir I solved Q.3 on Tim stamp 1:37:47
    the answer is
    #include
    int main(){
    int a;
    printf("enter the number may or may not divisible by 97:
    ");
    scanf("%d", &a);
    printf("the remainder=%d", a%97);
    return(0);
    }

  • @ujwalj7001
    @ujwalj7001 Рік тому +3

    I just started learning and when i downloaded notes i realised this guy just gave me hand-written notes, example programs, practice tests, projects, etc for free. If we try to learn C offline by buying the course, what more can they give us than what he has given ? I have learnt C from a variety of platforms (free ones) and none has ever been this engaging. Thanks Harry and why hasn't he already hit 1 mil subs ? come on people, sub nd support him, he has put in a lot of effort.

    • @HasiniG-fx7pt
      @HasiniG-fx7pt 3 місяці тому

      Where did you download that notes

  • @thundercodes2541
    @thundercodes2541 3 роки тому +556

    ❤ from Andhrapradesh

    • @tpssportschannel893
      @tpssportschannel893 Рік тому +5

      Hii this notes are cannot open please help me

    • @vijay7013
      @vijay7013 Рік тому +5

      Mee too bro

    • @Allu_arjun.07
      @Allu_arjun.07 Рік тому +5

      Me

    • @MadhuKishoreKukutla
      @MadhuKishoreKukutla Рік тому +3

      ​@@Allu_arjun.07 Brother, it's .zip file. Extract zip file into file manager then you will find chapters in pdf format.

    • @godofhell2588
      @godofhell2588 Рік тому +2

      Bro suggest me a good laptop for btech in cse ai

  • @savithasathishbabu3189
    @savithasathishbabu3189 3 роки тому +45

    STANDING OVATION TO THIS GUY. I LEARNT C IN JUST ONE WEEK BY JUST FOLLOWING THIS VIDEO. THANK YOU SO MUCH HARRY BHAI. SO MUCH HARD WORK. YOU WILL BE A INSPIRATION TO DEVELOPERS

    • @ushasunkari2724
      @ushasunkari2724 3 роки тому +1

      Hi .. Savitha... having read ur comment...can u plz help me solving my problem my gcc.exe file is not creating ....plz respond and help me ..I am very much interested in doing this course

    • @vengalrao5772
      @vengalrao5772 3 роки тому

      @@ushasunkari2724 😂 no reply

    • @CricketWithHarris
      @CricketWithHarris 3 роки тому

      @@ushasunkari2724 sure I will help, did you find a solution, or are you still stuck?

    • @naveenkumarm4511
      @naveenkumarm4511 2 роки тому

      @@CricketWithHarris brother how we can download the notes

    • @nakshatraa6710
      @nakshatraa6710 2 роки тому

      @@CricketWithHarris Hello I didn't find my gcc.exe file. Help me plzz.

  • @psyquber7991
    @psyquber7991 3 роки тому +6

    Hi Harry sir quick quiz on time stamp 3:32:00
    the code is
    #include
    int main() {
    int n;
    printf("please enter the value of n:
    ");
    scanf("%d", &n);
    for (int i = 1; i

  • @sayanisen1694
    @sayanisen1694 3 роки тому +6

    I have to admit, you are the best teacher in India who devotes so much time for unknown students, who might know you but you don't know them, right! Also, Yes I have solved Q4 and the answer is 24.000000.
    timestamp - 01:09:54
    Calculate Simple Interest
    #include
    int main(){
    int P = 100;
    float R = 6;
    int T = 4;
    float si = (P*R*T)/100;
    printf("The Simple Interest is - %f", si);
    return 0;
    }
    timestamp - 1:38:14
    Divisible by 97 or not
    #include
    int main(){
    int a;
    printf("Enter a number
    ");
    scanf("%d",&a);
    printf("%d", a%97);
    return 0;
    }

    • @biprojeetchaudhury9533
      @biprojeetchaudhury9533 Рік тому +1

      What was your remainder ? coz when i wrote this my remainder came out to be 78

    • @sayanisen9911
      @sayanisen9911 Рік тому

      @@biprojeetchaudhury9533 I don't remember now

  • @jessekM10
    @jessekM10 2 роки тому +2

    3:24:20 challenge accepted
    I did it and it worked.
    I initialized i to 1 and incremented it using postfix and the while loop was less than or equal to 4
    #include
    #include
    int main(void)
    {
    int i = 1;
    do
    {
    printf("%d
    ", i);
    i++;
    } while (i

    • @tayyabafarhan714
      @tayyabafarhan714 6 місяців тому

      but it says that Input should be 4 in the program...

  • @maltasankar927
    @maltasankar927 8 місяців тому +1

    chap 2 q4:
    #include
    int main() {
    int user;
    scanf("%d",&user); // Test value
    if (user % 97 == 0) {
    printf("divisible");
    } else {
    printf("not divisible");
    }
    return 0;
    }

  • @rameshmamidipaka8707
    @rameshmamidipaka8707 3 роки тому +18

    Sir my first coding lecture starts from you!
    The way your teaching is super and it makes me easy to learn C programming !👏

  • @atulyakharotia311
    @atulyakharotia311 3 роки тому +11

    first of all thx Harry bhiya for this course
    and I have solved question - 4 of chapter 1 ( 1:09:22 )
    coming to the question
    if principle is 100 , number of years are 4 and rate of return is 6 then simple interest will be 24.00
    please do like it , if it is correct 😊

  • @imhemish
    @imhemish 3 роки тому +85

    The hindi channel has this in 15hrs and this one has 11hrs.
    He is constantly improving videos so that we can learn more fastly.
    He also made the same python course in lesser hours

    • @chakrabartisayantan4013
      @chakrabartisayantan4013 3 роки тому +6

      Bro are these two same for a complete beginners who doesn't know C of code

    • @punith6109
      @punith6109 2 роки тому +1

      Yes yes
      I had this doubt about whether these two are same..?
      Just searching for ur comment....
      And finally happy to see this

    • @imhemish
      @imhemish 2 роки тому +1

      @@punith6109 they are the same and have same concepts

    • @sagardixit9247
      @sagardixit9247 2 роки тому +2

      "Fastly" that is a word🤔

    • @brianolendo8167
      @brianolendo8167 2 роки тому

      There will be some looking for shorter videos, others longer videos. It's a win for you if you love long videos. He also explains it well and does well to incorporate practice sets.

  • @vedant_potepatil
    @vedant_potepatil 3 роки тому +13

    This C language course is amazing...✌
    Can guarantee before completing it 😇

  • @rakshithaj1696
    @rakshithaj1696 2 роки тому +1

    03:31:54
    #include
    int main() {
    int i;
    printf("Enter the natural number upto which u want to print:
    ");
    scanf("%d", &i);
    for(i=1; i

  • @psyquber7991
    @psyquber7991 3 роки тому +7

    hi Harry sir on the time stamp 3:59:41
    the Q.6 code is
    FOR DO-WHILE LOOP
    #include
    int main() {
    int i=1;
    int sum = 0;
    do{
    sum += i;
    i++;
    }while(i

  • @nikhilraoranuva5172
    @nikhilraoranuva5172 2 роки тому +1

    1:09:50 I got simple interest as 24.000000
    1:38:03
    #include
    int main()
    {
    int a,div;
    printf("Enter value of a:");
    scanf("%d",&a);
    div=a%97;
    printf("answer is:%d",div);
    }
    I put input as 194 and answer is 0
    2:21:45
    #include
    int main()
    int phy, math, chem;
    printf("Enter Values:
    ");
    scanf("%d %d%d", &phy, &math, &chem);
    float avg (phy + math + chem) / 3;
    if (avg>= 90)
    printf("Your Grade is A!");
    else if (avg < 90 && avg >= 80)
    printf("Your Grade is B!");
    else if (avg < 80 && avg >= 70)
    printf("Your Grade is C!");
    else if (avg < 70 && avg - 60)
    printf("Your Grade is D!");
    else
    printf("Your Grade is FI");
    return 0;
    }
    3:56:02 at least once
    7:31:20 yes
    7:48:51 yes
    8:52:06 a)gets
    9:54:00 Arrays

  • @dipankarbasak07
    @dipankarbasak07 3 роки тому +5

    Hindi mein tha ab English mein bhi. Hats off and kudos to Harry bhai ❤️❤️❤️

  • @ogundekoadegbenga3766
    @ogundekoadegbenga3766 2 роки тому +38

    Harry you are a star!!! I started learning C with your video on 11th June and finished today 13th July....could have finished earlier but I am the type to soak in the lessons, practice sets. Thank you so much. Can't wait to delve into the Python video...Keep soaring and shinning the light to our path. 👍👍👍

    • @ProgrammingWithHarry
      @ProgrammingWithHarry  2 роки тому +9

      Great job! Thanks for the appreciation ogundeko :)

    • @aloksingh_3
      @aloksingh_3 2 роки тому +1

      @@ProgrammingWithHarry hello sir there some problem in minGW i have done whatever you have told in video but i am not getting (gcc.exe) could you plz help on this ???

    • @moggagowtham1680
      @moggagowtham1680 2 роки тому

      @@aloksingh_3 Hi @alok pratap singh i am also facing the same issue. not able to run the code without (gcc.exe). Dear Sir @programmingWithHarry Kindly help me with this. Thank you.

    • @sanjaymaxd
      @sanjaymaxd Рік тому

      Guys please explain why did he use " "||"instead of "&&" in 2:31:41

  • @dedeepya930
    @dedeepya930 2 роки тому +5

    Namaste Harry Brother.I don't understand Hindi that's why I follow this channel and it is really really helping me a lot for understanding concepts.I request you to please regularly post videos on this channel so that it would be helpful for people like me.Thank you very much.

  • @harishanth.r732
    @harishanth.r732 6 місяців тому

    Hi harry,
    1:38:08 -: The program for question no. 3 is
    #include
    int main()
    {
    int a;
    printf("Enter a number =");
    scanf("%d",&a);
    if(a%97==0){
    printf("remainder = %d
    ",a%97);
    printf("This number is divisible by 97
    ");
    }
    else{
    printf("remainder = %d
    ",a%97);
    printf("Sorry,This number is not divisible by 97
    ");
    }
    return 0;
    }

  • @alonbechor1842
    @alonbechor1842 3 роки тому +65

    I'll go through the course as I have time, but I've already taken a peek to it and it seems so extensive and interactive which is important. This tutorial undoubtedly deserves more views than it already has and I wish it would get in the near future ! Thanks a lot.

    • @jiyapatel2940
      @jiyapatel2940 3 роки тому +1

      Have you seen?? Plss tell me your experience.. I'm in 11th clss can I do this

    • @anantgupta1188
      @anantgupta1188 3 роки тому

      @@jiyapatel2940 I am in 8th, I have just completed arrays chapter which is chapter 7 as a programming beginner
      I can feel that this course is gr8, worth checking out

  • @demonthor2465
    @demonthor2465 2 роки тому +2

    1:41:01
    #include
    int main()
    { int a;
    printf("enter the value of a
    ");
    scanf("%d",&a);
    printf("to check whether the number is divisible by 97 or not
    ");
    printf("%d",a%97==0);
    //if the output is 1 then the given number is divisible by 97
    //if it returns 0 then it is not divisible by 97
    return 0;
    }

  • @rakshithaj1696
    @rakshithaj1696 2 роки тому +3

    04:01:24
    Using do-while loop:
    #include
    int main()
    {
    int i=1;
    int sum=0;
    do{
    sum=sum+i;
    i++;
    }while(i

  • @realityjetio
    @realityjetio 3 роки тому +6

    11 Hours
    OMG! 😮😮
    You are So HARDWORKING !!
    Thanks for this course 😊😊
    This helps ALOT 🙏🙏🙏

  • @SrikarMallavolu
    @SrikarMallavolu 6 місяців тому +1

    5:02:05 The answer to this timestamp question is
    #include
    float multiply(float, float);
    int main(){
    float n=2;
    printf("The force of the body exerted by the earth is %f", multiply(n, 9.8));
    return 0;
    }
    float multiply(float n, float m){
    return n * m;
    }

  • @IAm-hp4rt
    @IAm-hp4rt 3 роки тому +4

    01:09:52 the answer is 24. I have used the same concept as we used it in question no. 3

  • @hemenkatarmal4486
    @hemenkatarmal4486 2 роки тому +27

    1:09:33
    Hello Harry Bhaiya I am 13 years old and your course is fantastic!! It is very easy to learn from you.
    I made program to calculate amount of simple interest as you told and I got an answer which is correct "24"!!
    Thanks Harry Bhaiya for teaching C programming in free!!

  • @ravishsingla4454
    @ravishsingla4454 2 роки тому

    yes
    4:06:38 answer
    #include
    int main(){
    int factorial=1;
    int n=0;
    int i=1;
    while (i

  • @codewithlamin
    @codewithlamin 3 роки тому +7

    Am currently learning C through your this course but at first when I get started I couldn't believe it's free. Man am so grateful. May God be with you. Peace!

  • @ashishsherwin3367
    @ashishsherwin3367 3 роки тому +5

    The best tutor for coding!! 🔥
    Already watched your c tutorial in hindi, will be watching this one for revision.

  • @punith6109
    @punith6109 2 роки тому +8

    6:21:16
    U explained pointers in damn good way Harry bro
    No doubt in that
    ❤️ U a lot

  • @animeloverpakbj8229
    @animeloverpakbj8229 3 роки тому +20

    Just completed this course on your other channel yesterday!
    Thanks bro! 😊🙏🏻

  • @praveengaming9600
    @praveengaming9600 15 днів тому +1

    really this video is very very helpful.This helped me a lot for me in my 1st semester. thankyou

  • @tekenateifranklyn
    @tekenateifranklyn 2 роки тому +3

    Hi, Mr Harry. Thank you so much for this wonderful hands on activity tutorial, am currently in Chapter 7, but trust me i can bost that i know C programming to an extent. I'll try as much as i can to share this more views and likes to the best i can, because there tones of pals like me who need this. Thank you so much sir.

  • @yashisrivastava8990
    @yashisrivastava8990 3 роки тому +24

    Thank you so much for your efforts which you have done for all of us.
    It's great feeling to have a teacher like you😊❤

    • @divyachadalavada9975
      @divyachadalavada9975 2 роки тому +1

      Hii do u have the notes like I couldn't download the notes so could u pls help me with thag

  • @differentdirection6294
    @differentdirection6294 3 роки тому +7

    editing in the vedio with little bit of meme flex is just awesome!...actually

  • @sureshsare265
    @sureshsare265 8 місяців тому

    4:06:36
    int i=1,factorial=1;
    int n=5;
    while(i

  • @ON-ne2zp
    @ON-ne2zp 3 роки тому +10

    God level Hard Work🙏

  • @skchannel588
    @skchannel588 3 роки тому +12

    It requires so much effort and a big heart to provide these super amazing tutorials for free 😀😀❤️❤️ , ver much thanks sir 🙏😀❤️
    Really appreciate your hard work 🙏

  • @jakkampudikrishnaveni689
    @jakkampudikrishnaveni689 2 роки тому +7

    8:08:32 solution of 6th problem:
    #include
    int count(int arr[],int n)
    {
    int j=0;
    for(int i=0;i0)
    {
    ++j;
    }
    }
    return j;
    }
    int main()
    {
    int a[10],i;
    printf("Enter the numbers into the array
    ");
    for(i=0;i

  • @psharan5362
    @psharan5362 10 місяців тому

    3:32:12 //Printing whole no. 0-10 using different loops :-
    #include
    int main()
    {
    //(1) while loop
    int i=0;
    while (i

  • @chiragharish1020
    @chiragharish1020 3 роки тому +5

    This was really helpful...now what should i continue with after i have completed this tutorial...to go in depth.

  • @telugubytes425
    @telugubytes425 2 роки тому +2

    timestamps -
    1 - 1:38:04
    // Author - Harsha Kota
    #include
    int main(){
    int a;
    printf("Enter a number
    ");
    scanf("%d",&a);
    printf("Reminder is %d", a%5);
    return 0;
    }
    Array code : 6:53:21 -
    #include
    int main()
    {
    int a[10], i, n;
    printf("Enter the number students marks you want to enter
    ");
    scanf("%d", &n);
    printf("Enter the marks of the students
    ");
    for (i = 0; i < n; i++)
    scanf("%d", &a[i]);
    for (i = 0; i < n; i++)
    printf("Hence the Marks of %d student = %d
    ", i + 1, a[i]);
    }

  • @sundaragirikaruna7530
    @sundaragirikaruna7530 8 місяців тому +1

    1:38:03
    #include
    Int main()
    {
    Int a;
    Printf("enter a value for a
    ");
    Scanf("%d",&a);
    Printf("%d",a%97);
    Return 0;
    }

  • @joywinbennis3567
    @joywinbennis3567 3 роки тому +11

    Harry is just the best....evn paid course arent this good and well explained. I liked the video clips in between .gives me more visual idea abt the topic.tysm bro....

  • @anantgupta1188
    @anantgupta1188 3 роки тому +10

    2:25:45 Initially I also thought that a would not be 11 if look through the code quickly. Then I released that it would be 11 only as you used only single = not ==
    Difference being that single = is for assignment & double == is for checking if a condition is true or false

  • @anandus1591
    @anandus1591 2 роки тому +2

    Now I have been learning C with this video. I reached 3:30. So far its going smoothly and appreciate your hardwork and thanks a lot for this effort.

  • @dextercodes3642
    @dextercodes3642 3 роки тому +4

    02:26:00
    Sir here according to me, in (If else ) statement writing any non-zero number is acceptable. hence, if we get 11 the first if statement will turn out to be true.

    • @GAMIX7
      @GAMIX7 3 роки тому +2

      = means assigning. == Meaning comparing

    • @nikhilteja8171
      @nikhilteja8171 3 роки тому

      @@GAMIX7 Yeah...

  • @dhanyaanchan7710
    @dhanyaanchan7710 2 роки тому +3

    YOU ARE A BOON TO ME ! Thanks much. Was literally looking all over the UA-cam for a session like this which starts right from the scratch. God bless you! You will be my go to instructor for any kinda languages that i learn in future!

    • @aboutbooks.1751
      @aboutbooks.1751 2 роки тому

      How to open the drive notes...its not opening

  • @hemantwasthere
    @hemantwasthere 3 роки тому +5

    Harry bhai rocks 🔥🔥🔥🔥🔥🔥🔥

  • @shashankkumarsingh729
    @shashankkumarsingh729 11 місяців тому +2

    1:37:56
    user input divisible by 97
    #include
    int main ()
    {
    int n;
    printf("enter a number:
    ");
    scanf("%d",&n);
    printf("%d",n%97);
    return 0;
    }

  • @Farhan-h6i
    @Farhan-h6i 7 місяців тому

    2:22:00
    #include
    int main(){
    char grade;
    int marks;
    printf("Enter marks obtained:");
    scanf("%i",&marks);
    if (marks>90){
    grade = 'A';
    }
    else if(marks>80){
    grade = 'B';
    }
    else if(marks>70){
    grade = 'C';
    }
    else if(marks>60){
    grade = 'D';
    }
    else{
    grade = 'E';
    }
    printf("Your grade is %c",grade);
    }

  • @college6531
    @college6531 3 роки тому +4

    Harry bhai Zindabaad🥳🥳

  • @nirliptdas7540
    @nirliptdas7540 2 роки тому +3

    This language course was much needed...thanks Harry sir❤️

  • @befit1906
    @befit1906 Рік тому +4

    4:06:33
    ans of q no. 9
    #include
    int main()
    {
    int factorial = 1;
    int i = 1;
    int n = 6;
    while (i

  • @rameswarybehera2175
    @rameswarybehera2175 9 місяців тому

    Chapter 2 Practice set question 3 to calculate if a number is divisible by 97 by taking inputs from user 1:38:10
    #include
    int main()
    {
    int a;
    scanf("%d", &a);
    printf("%d", a % 97);
    return 0;
    }

  • @sharathchandra4667
    @sharathchandra4667 2 роки тому +4

    3:36:15
    #include
    int main()
    {
    int num;
    printf("Enter the value of Natural number :");
    scanf("%d",&num);
    for(int i =num; i>=1; i--)
    {
    printf("The value of i is %d
    ",i);
    }
    return 0;
    }

  • @Sd4ss
    @Sd4ss 3 роки тому +4

    This C Language course is very very much helpful!!

  • @rohankumarsingh7244
    @rohankumarsingh7244 2 роки тому +3

    01:09:46
    Answer for your value is 24. Code is below
    // Take input from user and calculate S.I.
    #include
    int main ()
    {
    int p, r, t;
    printf("Emter the principle =
    ");
    scanf("%d", &p);
    printf("Emter the rate =
    ");
    scanf("%d", &r);
    printf("Emter the time =
    ");
    scanf("%d", &t);
    printf("Thw simple interest of the entered value is = %d", (p*r*t)/100);
    return 0;
    }

  • @anitasharma-ez4gi
    @anitasharma-ez4gi 2 роки тому +4

    Hello brother
    In ENV édit thé bin file but gcc. Exe is not showing. Can you please help me

  • @AddaSaranya-z2t
    @AddaSaranya-z2t 11 місяців тому +1

    #include
    int main() {
    // Declare variables
    float marks;
    // Input marks from the user
    printf("Enter the marks: ");
    scanf("%f", &marks);
    // Check and assign the grade
    char grade;
    if (marks >= 90.0 && marks = 80.0 && marks < 90.0) {
    grade = 'B';
    } else if (marks >= 70.0 && marks < 80.0) {
    grade = 'C';
    } else if (marks >= 60.0 && marks < 70.0) {
    grade = 'D';
    } else {
    grade = 'F';
    }
    // Display the grade
    printf("Grade: %c
    ", grade);
    return 0;
    }

  • @lucidgamer8265
    @lucidgamer8265 2 роки тому +5

    2:25:57 (a=11) is wrong as '=' is used for assigning value, instead use (a==11) as '==' is used to equate.

  • @BS-vk2sd
    @BS-vk2sd 3 роки тому +4

    Bro salute to your dedication much much respect to your hard work keep doing the good work we are with you ❤

  • @muhammadaarizimam4890
    @muhammadaarizimam4890 3 роки тому +13

    Very useful tutorial harry brother. Keep up the great work! Also I would request you please make some videos on real projects using C as you did with Python (Pygame, Tkinter, Django, Flask).

  • @techgourab
    @techgourab 3 роки тому +6

    59:46
    #include
    int main(){
    int length,bredth,area;
    printf("Enter the length: ");
    scanf("%d",&length);
    printf("Enter the bredth: ");
    scanf("%d",&bredth);
    area=length*bredth;
    printf("The area of the rectangle is %d",area);
    return 0;
    }

  • @SaiAsrithv
    @SaiAsrithv 10 місяців тому +1

    4:11:24 Functions n recursion
    5:31:23 Pointers
    8:24:23 Strings
    9:05:10 Structures
    6:41:38 Arrays

  • @lelemera100
    @lelemera100 3 роки тому +7

    Your coursee + practicing with "let us C"=🔥🔥🔥🔥🔥

    • @anonymousman01
      @anonymousman01 3 роки тому

      Are you using let us solution book for practice ?

  • @advancedworld4212
    @advancedworld4212 3 роки тому +5

    I watched both of your c language videos in one shot : hindi & English and it took me 10 days.
    Thank you Harry bhai now I can say that I also know c language.

  • @HONOUREDone69
    @HONOUREDone69 2 роки тому

    Time : 1:37:53
    This is my answer of question 3
    #include
    int main(){
    float a;
    float b;
    printf("Enter the number
    ");
    scanf("%f", &a);
    printf("Enter your Divider
    ");
    scanf("%f", &b);
    printf("The answer for this will be %f", a/b);
    return 0;
    }

  • @crabsin2167
    @crabsin2167 2 роки тому

    1:38:21 #include
    int main(){
    int a,b;
    printf("Enter the value of number whose divisibility is to be checked
    ");
    scanf("%d",&a);
    b =a%97;
    printf("%d",b);
    printf("
    If remainder is 0 it is divisible otherwise it is not divisible");
    return 0;
    }

  • @_JerryDavis888
    @_JerryDavis888 4 місяці тому

    Harry’s energy is unmatched! I came to see what this video was about and ended up writing code 3 hours in.

  • @surrealwakening
    @surrealwakening 2 роки тому +1

    3:24
    int input;
    int i = 1;

    printf("type in the set limit: ");
    scanf("%d", &input);

    do{
    printf("%d
    ", i);
    i++;
    }while (i

    • @surrealwakening
      @surrealwakening 2 роки тому

      3:31
      //For Loop
      printf("type in the the n number of iterations: ");
      scanf("%d", &input);
      for(int i = 0; i

  • @rameswarybehera2175
    @rameswarybehera2175 9 місяців тому

    I have completed the question number 4 of practice set 1:09:48
    #include //header files
    int main() // main function
    {
    int principle;
    int years;
    int interestRate;
    scanf("%d", &principle);
    scanf("%d", &years);
    scanf("%d", &interestRate);
    int SimpleInterest = (principle * interestRate * years)/100);
    printf("The Simple Interest is: %d", SimpleInterest);
    }

  • @KrishnaPlayz
    @KrishnaPlayz Рік тому

    1:09:48 Simple Interest & Amount :
    #include
    int main()
    {
    // int P = 100;
    // float r = 6;
    // int t = 4;
    int P;
    int t;
    float r;
    printf("Enter the value of principal amount
    ");
    scanf("%d", &P);
    printf("Enter the number of years
    ");
    scanf("%d", &t);
    printf("Enter the rate of simple interest
    ");
    scanf("%f", &r);
    printf("Required Simple Interest is %f
    ", P*r*t/100);
    float I = P*r*t/100;
    float A = P+I;
    printf("Total Amount is %f
    ", A);
    // finally amount :')
    return(0);
    }
    01:38:11 Divisibility of a number by 97 :
    #include
    int main(){

    int a;
    printf("Enter the number which will be checked, if its divisible by 97
    ");
    scanf("%d", &a);
    printf("The remainder is %d", a%97);
    return 0;
    }
    2:21:49 Student's Grades :
    #include
    int main()
    {
    int grade;
    printf("Enter Your Marks:
    ");
    scanf("%d", &grade);
    if(grade>=90){
    printf("You have passed with A grade");
    }
    else if(grade>=80){
    printf("You have passed with B grade");
    }
    else if(grade>=70){
    printf("You have passed with C grade");
    }

    else if(grade>=60){
    printf("You have passed with D grade");
    }
    else{
    printf("You have passed with F grade");
    }
    return 0;
    }
    3:24:37 Do while Natural no. :
    #include
    int main(){
    int n, i = 1;
    printf("Enter a natural number :
    ");
    scanf("%d", &n);
    printf("The natural numbers from 1 to %d are:
    ", n);
    do{
    printf("%d
    ", i);
    i++;
    }while(i

  • @im_AnimeWala
    @im_AnimeWala 2 роки тому

    01:09
    #include
    int main()
    {
    //p=100, r=6%, t=4 years
    int p=100;
    int r=6;
    int t=4;
    printf("simple interest will be %d", p*r*t/100);

    return 0;
    }

  • @KirthiKaki
    @KirthiKaki Рік тому +1

    Time stamp: 3:24:11
    #include
    int main ()
    {
    int i=1;
    do
    {
    printf("the value of i is %d
    ",i);
    i++;
    } while (i

  • @GKFactsAdda
    @GKFactsAdda 11 місяців тому +1

    3:32
    #include
    int main() {
    int N, i;
    // Input the value of N from the user
    printf("Enter the value of N: ");
    scanf("%d", &N);
    // Print the first N natural numbers
    printf("The first %d natural numbers are:
    ", N);
    for (i = 1; i

  • @GK.pustakam
    @GK.pustakam Рік тому

    6:38:46
    #include
    int tenx(int);
    int main(){
    int a=53;
    printf("The value before 10x is %d
    ", a);
    tenx(a);
    printf("The value after 10x is %d", tenx(a));
    return 0;
    }
    int tenx(int a){
    return (a*10);
    }

  • @deepasino1832
    @deepasino1832 Рік тому

    1:38:14 I have completed question number 3 in CH 2 exercise. This is the program:
    #include
    int main()
    {
    int n;
    printf("Enter your value
    ");
    scanf("%d", &n);
    printf("If the output is 0 your number is divisible by 97 and if not, it is not divisible by 97 and so your answer is %d", n%97);
    return 0;
    }

  • @ITACHIUCHIHA-137
    @ITACHIUCHIHA-137 5 місяців тому

    started learning programming today yours lecture is interesting , 🖤 from india

  • @anantkumar4370
    @anantkumar4370 Рік тому

    Finally completed the whole video.
    Anyone thinking of whether it is enough or anything else, you can go with it, i can say it's the best video to grasp the concept of c programming.

  • @hopes_alive-100
    @hopes_alive-100 Рік тому

    1:38:07
    #include
    int main()
    {
    int num;
    scanf("%d",&num);
    printf("The reminder is: %d",num%97);
    return 0;
    }

  • @pradyumnkansara3544
    @pradyumnkansara3544 2 роки тому

    3:24:11
    solution of ch 4 quick quiz:
    #include
    int main()
    {
    int i = 0;
    int n;
    printf("enter the no. for printing natural no.:");
    scanf("%d",&n);
    do{
    if(i>0){
    printf("%d
    ",i);
    }
    i++;
    }while(i

  • @rangaprasad4212
    @rangaprasad4212 Рік тому

    4:00:00
    #include
    int main() {
    int sum=0;
    for (int i=1;i

  • @drspidey2876
    @drspidey2876 2 роки тому +4

    9:01:44
    #include
    int main(){
    char source[]="anythingrandom";
    char target[20];
    int i=0;
    while (source[i]!='\0')
    {
    target[i]=source[i];
    i++;
    }
    printf("our version of strcpy copies target as %s",target);
    return 0;
    }