C Language Tutorial for Beginners (With Notes) 🔥

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 2,1 тыс.

  • @ProgrammingWithHarry
    @ProgrammingWithHarry  3 года назад +969

    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.

  • @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);
    }

  • @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);
    }

  • @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

  • @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

  • @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

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

  • @antoniokhan9367
    @antoniokhan9367 3 года назад +215

    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

  • @ashishrao5323
    @ashishrao5323 3 года назад +568

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

  • @ziaurrahman-xr6mm
    @ziaurrahman-xr6mm Год назад +15

    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

  • @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 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

  • @sreeramvavilala3488
    @sreeramvavilala3488 3 года назад +239

    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

  • @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

  • @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.

  • @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
      ruclips.net/video/5lLkLi9SAlA/видео.html

  • @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

  • @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

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

  • @imhemish
    @imhemish 3 года назад +84

    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.

  • @thundercodes2541
    @thundercodes2541 3 года назад +551

    ❤ 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 года назад +44

    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.

  • @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...

  • @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

  • @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 😊

  • @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

  • @polireddyviza130
    @polireddyviza130 6 месяцев назад +135

    Anyone who passed class 12 this year

  • @SrikarMallavolu
    @SrikarMallavolu 5 месяцев назад +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;
    }

  • @dipankarbasak07
    @dipankarbasak07 3 года назад +5

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

  • @vedant_potepatil
    @vedant_potepatil 3 года назад +13

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

  • @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

  • @sureshsare265
    @sureshsare265 7 месяцев назад

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

  • @psharan5362
    @psharan5362 9 месяцев назад

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

  • @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

  • @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.

  • @Farhan-h6i
    @Farhan-h6i 6 месяцев назад

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

  • @praveengaming9600
    @praveengaming9600 7 дней назад +1

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

  • @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!!

  • @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!

  • @realityjetio
    @realityjetio 3 года назад +6

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

  • @ravishsingla4454
    @ravishsingla4454 2 года назад

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

  • @punith6109
    @punith6109 2 года назад +8

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

  • @sundaragirikaruna7530
    @sundaragirikaruna7530 7 месяцев назад +1

    1:38:03
    #include
    Int main()
    {
    Int a;
    Printf("enter a value for a
    ");
    Scanf("%d",&a);
    Printf("%d",a%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

  • @animeloverpakbj8229
    @animeloverpakbj8229 3 года назад +20

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

  • @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]);
    }

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

  • @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...

  • @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.

  • @ashishsherwin3367
    @ashishsherwin3367 3 года назад +5

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

  • @chiragharish1020
    @chiragharish1020 3 года назад +5

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

  • @fluffy14318
    @fluffy14318 8 месяцев назад

    Answer for 1:38:14 is
    #include
    int main()
    {
    int a = a;
    printf("Enter the value of a
    ");
    scanf("%d", &a);
    printf("The remainder when a is divided by 97 is equal to %d", a%97);
    return(0);
    }

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

  • @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 🙏

  • @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

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

  • @sachinchaudhary1310
    @sachinchaudhary1310 Год назад +1

    3:23:56
    #include
    int main()
    {
    int input = 4;
    int num = 1;
    do
    {
    printf("output is %d
    ", num++);
    } while (num

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

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

  • @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....

  • @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

  • @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

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

  • @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

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

  • @ON-ne2zp
    @ON-ne2zp 3 года назад +10

    God level Hard Work🙏

  • @differentdirection6294
    @differentdirection6294 3 года назад +7

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

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

  • @dhanyaanchan7710
    @dhanyaanchan7710 2 года назад +3

    YOU ARE A BOON TO ME ! Thanks much. Was literally looking all over the RUclips 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

  • @lelemera100
    @lelemera100 3 года назад +7

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

    • @anonymousman01
      @anonymousman01 3 года назад

      Are you using let us solution book for practice ?

  • @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.

  • @nirliptdas7540
    @nirliptdas7540 2 года назад +3

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

  • @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

  • @college6531
    @college6531 3 года назад +4

    Harry bhai Zindabaad🥳🥳

  • @hemantwasthere
    @hemantwasthere 3 года назад +5

    Harry bhai rocks 🔥🔥🔥🔥🔥🔥🔥

  • @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.

  • @Sd4ss
    @Sd4ss 3 года назад +4

    This C Language course is very very much helpful!!

  • @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);
    }

  • @SurajChouhan-s9w
    @SurajChouhan-s9w 24 дня назад

    2:25:56
    Here the output is
    a is 11
    Since a=11 in if statement is not a comparision being done
    Rather it is making the if statement condition evaluates to True .
    For proper execution it should have been a==11

  • @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

  • @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).

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

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

  • @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);
    }

  • @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

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

  • @_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.

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

  • @kothamasusatya5460
    @kothamasusatya5460 Год назад

    3:24:13
    int i,n;
    Printf("enter the value n:");
    Scanf("%d",&n);
    Do
    {
    Printf("the value of i is %d
    ",i);
    i++;
    }while(i

  • @Ether28
    @Ether28 3 года назад +5

    1:38:12
    #include
    int main()
    {
    int a;
    int b;
    printf("Enter your number to check its divisiblity...
    ");
    scanf("%d", &a);
    printf("Enter the number by which you want to divide...
    ");
    scanf("%d", &b);
    printf("Your reminder is %d", a%b);
    return 0;
    }

  • @rangaprasad4212
    @rangaprasad4212 11 месяцев назад

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

  • @sureshsare265
    @sureshsare265 8 месяцев назад

    3:59:50
    #include
    int main() {
    int i=1,sum=0,n=10;
    do{
    sum= sum+i;
    i++;
    }while(i