C Programming Exercise 1 - Multiplication Tables: C Tutorial In Hindi #8

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

Комментарии • 8 тыс.

  • @CodeWithHarry
    @CodeWithHarry  5 лет назад +1027

    I need some feedback. How is the course going? Is it going too fast or too slow or okay? Please let me know because I am getting mixed feedback on speed of this course!
    Also how often should I use pen and board to teach?

  • @grimsleet
    @grimsleet Год назад +17

    Challenge Accepted Sir,
    Thank You for helping us in understanding C concepts more easily and clearly.

  • @vishnupandit4072
    @vishnupandit4072 2 года назад +37

    Challenge accepted and completed in two different ways; one using for loop and another is beginner's method.

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

      Bro but Harry bro doesn't say anything about loop

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

      Heyy bro what is the beginners method

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

      ​@@tryit1719arithmetically multiplication vala

    • @dinkisolanki8251
      @dinkisolanki8251 3 месяца назад +3

      ​@@newsandotherstuff2129ek ek line ko multiplication and run kare kya??? I'm not understanding how to do it through beginner's method

    • @erenyeager6210
      @erenyeager6210 2 месяца назад

      ​@@dinkisolanki8251 hn ek ek link likh ke print

  • @MohamedImran-pk3jz
    @MohamedImran-pk3jz 2 месяца назад +6

    Challenge accepted and challenge completed alhamdulillah thank you sir❤❤.

  • @Ahmed_king777
    @Ahmed_king777 2 года назад +29

    I completed the challenge. Thanks Sir you are a GEM.
    #include
    int main(int argc, char const *argv[])
    {
    int Table, index =0;
    printf("Enter the number which you want the Mulyiplication Table of
    ");
    scanf("%d",&Table);
    printf("The table of %d is
    ",Table);
    do{
    printf("%d * %d= %d
    ",Table,index,Table*index);
    index = index+1;
    }while (index

  • @kundan4863
    @kundan4863 2 года назад +154

    After 3 year I am Accepting this challenging.

  • @aspanel
    @aspanel 5 лет назад +36

    Sir course is going very well. Not too slow and not too fast it has a medium speed.

  • @ojcoder208
    @ojcoder208 4 месяца назад +4

    Challenge accepted by Ojas aka OJ coder🔥🔥🔥🔥
    I know a bit of c becz i have already done classes of basic C but I didnt understood everything so i am revising on youtube(I AM DOING THIS COURSE ON TURBO C )

  • @varunkolanu
    @varunkolanu 2 года назад +20

    I have accepted the challenge
    And i did it sir. I got a self satisfaction by this.. thank you so much sir🙏🙏

    • @racks8493
      @racks8493 2 года назад +1

      Solution video kha hai

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

      Challenge accepted 🗣

  • @zenitsu2989
    @zenitsu2989 3 года назад +64

    Even after 2 years these videos are very very usefull. thank you!

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

      I'm watching this video 2 year a go of uploaded , I don't believe your word😱😱

  • @VIKASHTHAKUR-uf2kf
    @VIKASHTHAKUR-uf2kf Год назад +32

    challenge accepted sir
    you will definitely make us a job ready.
    Great initiative taken by you for teaching programming to everyone..💯

  • @MinahilNadeem-s3f
    @MinahilNadeem-s3f Месяц назад +1

    challange accepted
    harry bahi you are a best codding teacher

  • @abhishekmina4913
    @abhishekmina4913 3 года назад +40

    Challenge accepted Harry ... I'll make sure that I complete this tutorial ASAP!
    I hope you will help me throughout this course

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

    Even after 3 years of this video it very amazing

  • @salik_khan01
    @salik_khan01 8 месяцев назад +1

    Challenge accepted!!
    Harry bhai ❤️

  • @souravverma4768
    @souravverma4768 3 года назад +25

    challenge accepted i hope i complete this challenge ASAP!
    you are such a great teacher sir.

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

    challange accepted and completed as well. thank you harry bhai

  • @harshadapatil1512
    @harshadapatil1512 Год назад +7

    Your teaching level don't have any comparison❤

  • @sakshisaini5316
    @sakshisaini5316 11 месяцев назад +3

    Challenge accepted master Harry 😊

    • @Vaidyacomedyclub
      @Vaidyacomedyclub 10 месяцев назад +2

      Kya tum bhi 😅 abhi start kiye ho c agar yes to reply Karo mere paas c ka bahut sara source code hain 😅

  • @bibekgupta8864
    @bibekgupta8864 4 года назад +19

    challenge accepted and completed the task. I am Civil Engineer learning this for my own interest . I find your course is really very satisfying. Thank you so much Mr. Harry

    • @iqrashafi9710
      @iqrashafi9710 4 года назад +1

      ap ka out put show ho raha hai
      plz reply me

    • @jaibharatmata8921
      @jaibharatmata8921 4 года назад +2

      @@iqrashafi9710
      printf(" %d
      " +6*1);
      printf(" %d
      " +6*2);
      .
      .
      .
      printf(" %d" +6*10);
      Without loop

    • @iqrashafi9710
      @iqrashafi9710 4 года назад +1

      @@jaibharatmata8921 thanks

    • @jaibharatmata8921
      @jaibharatmata8921 4 года назад +1

      @@iqrashafi9710 your welcome dear friends

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

      ​@@iqrashafi9710#include
      int main()
      {
      printf ("multiplication in table 6 no
      ");
      int a,b;
      a=6;
      b=1;
      printf ("6×1=%d
      ",a*b);
      b+=1;
      printf ("6×2=%d
      ",a*b);
      b+=1;
      printf ("6×3=%d
      ",a*b);
      b+=1;
      printf ("6×4=%d
      ",a*b);
      b+=1;
      printf ("6×5=%d
      ",a*b);
      b+=1;
      printf ("6×6=%d
      ",a*b);
      b+=1;
      printf ("6×7=%d
      ",a*b);
      b+=1;
      printf ("6×8=%d
      ",a*b);
      b+=1;
      printf ("6×9=%d
      ",a*b);
      b+=1;
      printf ("6×3=%d
      ",a*b);

      return 0;
      }

  • @coder_chandan
    @coder_chandan 3 года назад +37

    "Challenge accepted " and Thank you so much sir to make me understood

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

    Challenge accepted
    Dil SE thank you bhaiya ❤️❤️❤️

  • @dkgamer2.o331
    @dkgamer2.o331 10 месяцев назад +1

    sir you are opp me apke video se bhot sikhta hu and aap bhot simple way me sikhate ho and challenge accepted

  • @gurav_rohit
    @gurav_rohit 4 года назад +103

    challenge accepted sir
    you will definitely make us a job ready.
    Great initiative taken by you for teaching programming to everyone

  • @sayalikatkar9205
    @sayalikatkar9205 4 года назад +7

    Challege accepted...actually I have little idea about while loop..hence I solved this problem using loop

  • @faizakhtar5329
    @faizakhtar5329 2 года назад +4

    2:15 Harry set keyboard on fire 😂😂🔥🔥

  • @RadhaKrishna-wf2ev
    @RadhaKrishna-wf2ev Месяц назад

    learnt python from sir in lockdown cz i was bored when i was in 10th and planned on learning c too but i couldn't make time for it, now i am in clg 1st year and still his videos are the best in yt

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

    challenge accepted and thanks a lot for teaching in such a good manner so that these questions seems so easy to a beginer.

  • @akashaswar1579
    @akashaswar1579 3 года назад +34

    Challenge accepted after completing😁😁
    Thank you for these type of teaching
    I cant believe that i develop that program by myself😃😃

    • @mehulkumar2754
      @mehulkumar2754 3 года назад +1

      Please send the code you wrote for this program

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

      @@mehulkumar2754 COPY PASTING WONT LET U LEARN

    • @suratgaming5462
      @suratgaming5462 2 года назад +1

      @ViLen it's easy just ask no then print a*1
      a*2 like this it's easy

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

    I accept challenge after 2 years . Quality and knowledge of video is much better than college teachers . Aise teacher chahiye muze mere college me 🥺🥺

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

      True bro our programming teacher suckssss

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

    challenged accepted and completed 100%.seriously you had me for some moment...well I won't say that I did it myself what I mean is THE ANSWER IS ITSELF IN THIS VIDEO ;

  • @gxanshu
    @gxanshu 4 года назад +9

    any one in market does not want to teach me programming because i am in 9 stranded by your playlist help me so much

    • @aryashahi9336
      @aryashahi9336 4 года назад +2

      hume to 2nd year m bhi nhi aya *-*

    • @Jack-mc7qe
      @Jack-mc7qe 4 года назад +1

      @@aryashahi9336 haha ye doodh peete bacho ko pta nhi kya hi chul hai

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

      Same now i am in 10

  • @_ParinitaMondal
    @_ParinitaMondal 2 года назад +5

    Challenge accepted and done 👍 .... You are teaching very nice sir, it's neither too fast nor too slow.

  • @Abhishek-cw6id
    @Abhishek-cw6id 4 года назад +47

    challenge accepted ✌️👍
    you are soo great teacher sir 🤗🤗❣️😌

  • @VivekVerma-ft3jg
    @VivekVerma-ft3jg 10 месяцев назад +1

    Challenge accepted Harry Bhai 🎉🎉🎉🎉🎉🎉😊😊😊

  • @sanikatiwarekar9202
    @sanikatiwarekar9202 2 года назад +28

    challenge accepted and code written sir ! thank you so much, I'm a complete beginner to this but will definitely be watching the rest of your videos in this course to learn from you !

  • @divyarajmakwana6211
    @divyarajmakwana6211 3 года назад +9

    Challenge accepted and completed in 8 mins.

  • @rakeshhardiya2052
    @rakeshhardiya2052 7 месяцев назад +90

    Challenge accepted button 👇👇

    • @baklolyou8571
      @baklolyou8571 4 месяца назад +15

      I thought I was the only one watching this series in 2024😂😂❤#harrybhaiop

    • @rakeshhardiya2052
      @rakeshhardiya2052 4 месяца назад

      @@baklolyou8571 😄😄

    • @Harsh_Kumar147
      @Harsh_Kumar147 4 месяца назад

      Me too 😅​@@baklolyou8571

    • @Pruthil29
      @Pruthil29 3 месяца назад +2

      ​@@baklolyou8571 Same bro 😁

    • @yash_sk3364
      @yash_sk3364 2 месяца назад +1

      Same bro 😅

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

    challange accepted as well as completed........thanks for your playlist

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

    you are doing really great job for the student like me, because of you only i am able learn c language
    thank you so much sir, this job is not less than any samajsudharak ,you are doing something for thos people who did not able to learn because of financial issue...
    thanks once again sir....

  • @karansolav7275
    @karansolav7275 2 года назад +9

    challenge accepted!😇
    now learn C language after using C in one video course.
    it's was awesome.

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

    Exersise completed
    thank you harry sir for explaining us

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

    CHALLENGE ACCEPTED and thank u so sir for helping us i have written the code without any help

  • @abhijeet8290
    @abhijeet8290 4 года назад +9

    #include
    Main()
    {
    Int num,i ;
    Printf(“enter the number of which you want the table of “);
    Scanf(%d%d,&num,&i);
    Num=num*i;
    (i>1,i

  • @sachingoyal3796
    @sachingoyal3796 3 года назад +8

    challenge accepted sir and thank you so much sir
    i am a beginner and i really worry about coding but after view your courses ....literally very helpfull for me

  • @adv.rohan_parihar
    @adv.rohan_parihar 3 года назад +18

    "challenge accepted" and thank you for teaching everyone

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

      Hello I'm not getting it can uh please explain ?

  • @DivyanshuPrakashOfficial
    @DivyanshuPrakashOfficial 2 года назад +4

    Challege accepted 🤝
    And thank you so much bhaiya for this marvelous playlist🤗❤️

  • @manshidubeydubey5466
    @manshidubeydubey5466 10 месяцев назад +2

    Challenge excepted sir😊

  • @poorvishrivas0767
    @poorvishrivas0767 4 года назад +63

    Printf("challenge accepted ") ;

    • @bhb037
      @bhb037 4 года назад +2

      😂😂

    • @sanjaysoni-hh3xd
      @sanjaysoni-hh3xd 4 года назад +11

      madam printf ka P small hoga nhi to error aayega

    • @shouryasharma9494
      @shouryasharma9494 4 года назад

      @@sanjaysoni-hh3xd Yes it is giving error

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

      ​@@sanjaysoni-hh3xd😂😂 correct

  • @VIKASHTHAKUR-uf2kf
    @VIKASHTHAKUR-uf2kf Год назад +19

    //Question 1
    /*
    Print multiplication table of a number entered by the user in pretty form
    Example:
    Input
    Enter the number you want multiplication table of:
    6
    Output:
    Table of 6:
    6 X 1 = 6
    6 X 2 = 12
    .
    .
    .
    6 X 10 = 60
    */
    int main()
    {
    int a;
    printf("Enter the number you want table of
    ");
    scanf("%d", &a);
    printf("%d * 1 = %d
    ", a, a*1);
    printf("%d * 2 = %d
    ", a, a*2);
    printf("%d * 3 = %d
    ", a, a*3);
    printf("%d * 4 = %d
    ", a, a*4);
    printf("%d * 5 = %d
    ", a, a*5);
    printf("%d * 6 = %d
    ", a, a*6);
    printf("%d * 7 = %d
    ", a, a*7);
    printf("%d * 8 = %d
    ", a, a*8);
    printf("%d * 9 = %d
    ", a, a*9);
    printf("%d * 10 = %d
    ", a, a*10);
    return 0;
    }
    The output is
    Copyright (C) Microsoft Corporation. All rights reserved.
    Install the latest PowerShell for new features and improvements! aka.ms/PSWindows
    PS C:\Users\dudem\Desktop\CWH c> gcc ex1.c -o ex1
    PS C:\Users\dudem\Desktop\CWH c> ./ex1.exe
    Enter the number you want table of
    13
    13 * 1 = 13
    13 * 2 = 26
    13 * 3 = 39
    13 * 4 = 52
    13 * 5 = 65
    13 * 6 = 78
    13 * 7 = 91
    13 * 8 = 104
    13 * 9 = 117
    13 * 10 = 130
    PS C:\Users\dudem\Desktop\CWH c>
    I accepted the challenge and I think I've completed the challenge.

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

      great brother👍👍 your code is right

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

      Thanks man, i was wondering as to how to use that %d ting. Got it now. Thanks buddy

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

      yes you're right bro but i want to modify your code to make shorter
      #include
      int main ()
      {
      int b =0 ; int c;
      printf("Enter a number that you want table of ");
      scanf("%d", &c);
      {
      printf("Table of %d is
      ", c);
      }

      for(int i=1 ; i

    • @priyankasingh6792
      @priyankasingh6792 12 дней назад

      Right..

    • @priyankasingh6792
      @priyankasingh6792 12 дней назад

      Super...

  • @FKNEngineerYT
    @FKNEngineerYT 2 года назад +6

    Challenge Accepted
    Edit: I have solved the problem.(I had put everything into the problem, was not putting %d on both the first number to be multiplied and the answer, was not aware that %d can be assigned two values at same time, thanks to one of the comments which posted the answer.) not happy as did not do the question fully by myself, but satisfied that i had reached the answer almost by myself. At last thanks Harry Sir for the great course!

  • @JunaidAmin-r6n
    @JunaidAmin-r6n 2 месяца назад +1

    I am Accepting this challenging.

  • @pshobha7783
    @pshobha7783 5 лет назад +14

    Challenge accepted
    #include
    Void main (){
    int n, mul, i;
    Printf("enter the no for which multiplication is needed");
    scanf ("%d",&n);
    printf ("table of %d",n);for(i=1;i

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

      there is an error u cant give integer 6 directly in code bcuz any number if u enter the output will be tables of 6 replace it with n

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

      could u pls explain how did u write the last print statement ...6*%d=%d,i,mul ?

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

      For loop to padhaya hi nhi abhi tk 🙄

  • @SUMITSHARMA-sy6uf
    @SUMITSHARMA-sy6uf 2 года назад +4

    I am actually 3 years late, but your challenge is accepted.

  • @jadavkhushi7838
    @jadavkhushi7838 2 года назад +5

    Challenge accepted sir 👍 you doing very good work .thank you so much to give the brief information.

    • @racks8493
      @racks8493 2 года назад +1

      Solution video kha hai?

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

    Challenge accepted and completed🥳. Thank u sir 🙏

  • @_memes_for_you_
    @_memes_for_you_ 4 года назад +4

    Phley Aaye hote meri zindgi me to kafi waqt bachta❤️😌😌😌✌️💙

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

    challenge Accepted sir ! Thank you sir for this amazing guidance 😊😊

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

    Don't know if the challenge is still on 😂
    But yeah...
    Challenge Accepted ✌️

    • @Wday100
      @Wday100 2 года назад +2

      same here

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

    challenge accepted harry sir!😊
    as well as completed!
    thank you so much🙏

  • @abdulkayum886
    @abdulkayum886 4 года назад +16

    printf("challange accepted");

  • @SAMIRANBAISHYA-i6z
    @SAMIRANBAISHYA-i6z 11 месяцев назад

    challenge accepted bhaiya. thank you itna support karne ke liye.

  • @akgamer0006
    @akgamer0006 3 месяца назад +3

    # include
    int main()
    {
    for(int i=1; i

  • @computer_tech98
    @computer_tech98 Год назад +11

    //Challenge accept ==challenge complete
    //Thank you bro👍
    #include
    #include
    void main()
    {
    int a, b, i;
    printf("enter the value of a: ");
    scanf("%d",&a);
    for(i=1;i

    • @kanakkhobragade7238
      @kanakkhobragade7238 Год назад +4

      Brother me beginner hu aur mujhse ye nahi hua💀

    • @HansPrimary
      @HansPrimary Год назад +2

      @@kanakkhobragade7238
      // Online C compiler to run C program online
      #include
      int main()
      {
      int a;
      printf("enter the number which you're looking for a table :");
      scanf("%d",&a);
      printf("the table of %d
      ",a);
      printf("%d",a);
      printf("x1:");
      printf("%d
      ",a*1);
      printf("%d",a);
      printf("x2:");
      printf("%d
      ",a*2);
      printf("%d",a);
      printf("x3:");
      printf("%d
      ",a*3);
      printf("%d",a);
      printf("x4:");
      printf("%d
      ",a*4);
      printf("%d",a);
      printf("x5:");
      printf("%d
      ",a*5);
      printf("%d",a);
      printf("x6:");
      printf("%d
      ",a*6);
      printf("%d",a);
      printf("x7:");
      printf("%d
      ",a*7);
      printf("%d",a);
      printf("x8:");
      printf("%d
      ",a*8);
      printf("%d",a);
      printf("x9:");
      printf("%d
      ",a*9);
      printf("%d",a);
      printf("x10:");
      printf("%d
      ",a*10);
      return 0;
      }
      try this

    • @pythonkrishna290
      @pythonkrishna290 Год назад +6

      @@HansPrimary isse accha ye try krlo
      #include
      int main(){

      int number; // This will store the number of which you want to print the multiplication table

      printf("Enter the number: ");
      scanf("%d", &number);
      printf("%d x %d = %d
      ", number, 1, number*1);
      printf("%d x %d = %d
      ", number, 2, number*2);
      printf("%d x %d = %d
      ", number, 3, number*3);
      printf("%d x %d = %d
      ", number, 4, number*4);
      printf("%d x %d = %d
      ", number, 5, number*5);
      printf("%d x %d = %d
      ", number, 6, number*6);
      printf("%d x %d = %d
      ", number, 7, number*7);
      printf("%d x %d = %d
      ", number, 8, number*8);
      printf("%d x %d = %d
      ", number, 9, number*9);
      printf("%d x %d = %d
      ", number, 10, number*10);
      return 0;
      }

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

      @@HansPrimary I think it can be done in a much easier way like this:
      #include
      int main()
      {
      int num,i;
      printf("
      Enter the number you want multiplication table of: ");
      scanf("%d",&num);
      printf("
      Table of %d is:
      ",num);
      for (i=1;i

  • @ApoorvJainofficial
    @ApoorvJainofficial 2 года назад +6

    I am a beginner but your teaching made me to
    Accepted this challenge successfuly
    Thanks Harry bhai ❤️

    • @NishaKumari-fy9sv
      @NishaKumari-fy9sv 2 года назад

      Please tell me from where I can get exercises of this video

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

      @@NishaKumari-fy9sv you can message me or can check website of Harry bhai

  • @majesticlucariogames
    @majesticlucariogames 6 месяцев назад +3

    Challenge accepted i got confusion in why we type a 2 times but by trial and error i understood that thanks fore teaching
    # include
    int main()
    {
    int a;
    printf("Enter number that you want to multipication table of : ");
    scanf("%d", &a);
    printf("%d X 1 = %d
    ",a,a*1);
    printf("%d X 2 = %d
    ",a,a*2);
    printf("%d X 3 = %d
    ",a,a*3);
    printf("%d X 4 = %d
    ",a,a*4);
    printf("%d X 5 = %d
    ",a,a*5);
    printf("%d X 6 = %d
    ",a,a*6);
    printf("%d X 7 = %d
    ",a,a*7);
    printf("%d X 8 = %d
    ",a,a*8);
    printf("%d X 9 = %d
    ",a,a*9);
    printf("%d X 10 = %d
    ",a,a*10);
    return 0;
    }

  • @ganeshkathar5817
    @ganeshkathar5817 4 года назад +12

    Printf("
    accepted");
    It was sove using some looping statements.

  • @Nikhil-qd2qg
    @Nikhil-qd2qg 5 месяцев назад +1

    Made the program successfully😊😊

  • @darshan8175
    @darshan8175 2 года назад +13

    #include
    int main()
    {
    int a, i;
    printf("Enter the number for table
    ");
    scanf("%d",&a);
    i=1;
    while (i

  • @Ramakantsharma12345
    @Ramakantsharma12345 2 года назад +6

    Your knowledge on operators is very sufficient.and i hope tha you will be fine ❤️❤️❤️ and you and your family enjoying your life.

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

    Challenge accepted and completed also😎, Thank you sir for guidance❤👍

    • @Amankumar-ij6dg
      @Amankumar-ij6dg 3 года назад +1

      How?
      Whats your output?

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

      @@Amankumar-ij6dg int main()
      {
      float a;
      printf("Enter The Number :
      ");
      scanf("%f",&a);
      printf("Table Of %f
      ",a);
      printf("%f X 1 = %f
      ",a,a*1);
      printf("%f X 2 = %f
      ",a,a*2);
      printf("%f X 3 = %f
      ",a,a*3);
      printf("%f X 4 = %f
      ",a,a*4);
      printf("%f X 5 = %f
      ",a,a*5);
      printf("%f X 6 = %f
      ",a,a*6);
      printf("%f X 7 = %f
      ",a,a*7);
      printf("%f X 8 = %f
      ",a,a*8);
      printf("%f X 9 = %f
      ",a,a*9);
      printf("%f X 10 = %f
      ",a,a*10);



      return 0;
      }

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

    Challange accepted
    Sir
    Thanks for teaching us ❤️❤️❤️

  • @RajMon-qz8pc
    @RajMon-qz8pc Месяц назад

    I accept it .
    it is too late but I got it . btw thank u soo much bhaiya ,,,,subha Chhath puja #24❤❤

  • @Utsav_D_Yadav
    @Utsav_D_Yadav 4 года назад +11

    Printf("chalenge accept sir");

  • @nahiarabeer
    @nahiarabeer 3 года назад +10

    Challenge accepted
    🔥🔥🔥🔥🔥

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

    Utilising the lockdown period by learning something new...Challenge Accepted 🔥

  • @adityarajkumawat1015
    @adityarajkumawat1015 5 лет назад +17

    Challenge Accepted
    Best Programming channel😃😃😃😃😀😁

  • @Gokul_kanpuriya
    @Gokul_kanpuriya 4 года назад +6

    Printf('chalange accepted');

  • @defencegk6708
    @defencegk6708 Год назад +2

    Challenge accepted sir🎉🎉🎉

  • @manavadwani9889
    @manavadwani9889 4 года назад +401

    I know I am late but Challenge Accepted .

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

    #include
    int main()
    {
    int a=7;
    printf("Table of 7 ");
    printf("
    %d
    %d
    %d
    %d
    %d
    %d
    %d
    %d
    %d
    %d",a*1,
    a*2,
    a*3,
    a*4,
    a*5,
    a*6,
    a*7,
    a*8,
    a*9,
    a*10
    );
    return 0;
    }

  • @ARgaming-J
    @ARgaming-J Год назад +5

    Challenge accepted after 4 years
    Still your video is helpful

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

    CHALLENGE ACCEPTED And thanks for teaching us in such a great way...

  • @uttkarshraj8938
    @uttkarshraj8938 3 года назад +30

    Challenge accepted , i am to late bhaiya😅

  • @030-sham
    @030-sham 4 года назад +5

    Printf("challenge accepts")

  • @altafshaikh665
    @altafshaikh665 2 года назад +6

    After 3+ year
    Accepted👍

  • @bilalrajput1428
    @bilalrajput1428 9 месяцев назад +1

    i watched in 2024 Thnk YOu sir very HELP FU;LL

  • @chillbro847
    @chillbro847 4 года назад +4

    Printf("challenge accept ")

    • @Swayamshree4
      @Swayamshree4 3 месяца назад

      Semicolon is missing 😐

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

    Printf("challenge except"); sir.

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

      Bro do you have solution of this problem if you have then please send me

  • @gopalchandrapramanik4856
    @gopalchandrapramanik4856 4 года назад +4

    printf("Challenge %s","accepted");

  • @kumarikhushi5268
    @kumarikhushi5268 6 месяцев назад

    Challenge accepted and completed..👌💯😉

  • @prernapandey1272
    @prernapandey1272 5 лет назад +5

    amazing job you are doing buddy... this is really a great initiative you have made..

    • @abhisheksaini-jj8ug
      @abhisheksaini-jj8ug 3 года назад

      Hey excuse me ,help me out where should i get solution of this exercise?

  • @tanmaynagdeve5719
    @tanmaynagdeve5719 5 лет назад +4

    Done with the Exercise.

  • @RaviKumar62025
    @RaviKumar62025 4 года назад +5

    Printf("Challege accepted")

  • @Viral-10M
    @Viral-10M Год назад

    Challenge accepted Harry bhaiya 👍👍👍

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

    #include
    int main() {
    int num, i;
    // Ask the user for the number
    printf("Enter a number: ");
    scanf("%d", &num);
    // Print the multiplication table
    printf("Multiplication table for %d:
    ", num);
    for (i = 1; i

  • @sayali7367
    @sayali7367 4 года назад +5

    Challenge accepted
    Thnku sir

  • @12_vibhutimendapara17
    @12_vibhutimendapara17 4 года назад +5

    printf("chellenge accepted");
    printf("
    meet you agin");

  • @BGMIHUB_Fun
    @BGMIHUB_Fun 4 года назад +5

    char challenge[10];
    challenge = "accepted" ;
    printf("%s",challenge);

    • @sheikhsahil7335
      @sheikhsahil7335 4 года назад +1

      Compiler Error ;

    • @BGMIHUB_Fun
      @BGMIHUB_Fun 4 года назад +2

      @@sheikhsahil7335 char challenge[10];
      challenge = "accepted" ;
      printf("%s",challenge);

    • @sheikhsahil7335
      @sheikhsahil7335 4 года назад +1

      @@BGMIHUB_Fun Bro you should declare accepted line on same line without terminate it by semi colon
      char challenge [10] = 'accepted';
      Otherwise compiler will encounter by error

  • @NishaChoudhary-w2o
    @NishaChoudhary-w2o 11 месяцев назад

    Challenge accepted sir👍
    #include
    #include
    main()
    {
    int a, i, n;
    a=6;
    printf(" Enter a num ":);
    scanf("%d",&n);
    for(i=1; i

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

      this is correct code
      #include
      #include
      //problem statement - print a multiplication table of a number enterred by user
      int main(){
      int n , a, i;
      printf("enter the number
      ");
      scanf("%d", &n);

      for(i=1; i

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

      instead of n=a*1 write a=n*i where n=user number , i = serial no. in loop from 1 to 10 , a =answer of multiplication