Do While Loop In C: C Tutorial In Hindi #13

Поделиться
HTML-код
  • Опубликовано: 11 янв 2025
  • In this C programming tutorial video, I have explained you about do while loops. I hope you are enjoying this C course in Hindi.
    ►This C Lecture is a part of this C Programming Course: • C Language Tutorials I...
    ►Source Code + Notes: codewithharry....
    ►Click here to subscribe - / @codewithharry
    Best Hindi Videos For Learning Programming:
    ►Learn Python In One Video - • Learn Python In Hindi ...
    ►Learn JavaScript in One Video - • JavaScript Tutorial
    ►Learn PHP In One Video - • Learn Php In One Video...
    ►Machine Learning Using Python - • Machine Learning Tutor...
    ►Creating & Hosting A Website (Tech Blog) Using Python - • [Hindi] Web Developmen...
    ►Advanced Python Tutorials - • Intermediate/Advanced ...
    ►Object Oriented Programming In Python - • Object Oriented Progra...
    ►Python Data Science and Big Data Tutorials - • Python Data Science an...
    Follow Me On Social Media
    ►Website (created using Flask) - www.codewithha...
    ►Facebook - / codewithharry
    ►Instagram - / codewithharry
    ►Personal Facebook A/c - / geekyharis
    Twitter - / haris_is_here

Комментарии •

  • @sumitsoni8471
    @sumitsoni8471 4 года назад +513

    Bhaiya hr ek video ke end me 1 question diya kro.

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

    Sir maine Kaafi time Pehle C kiya tha, this time I am in PG from IIT(ISM), bahut faayda ho raha hai...Aap bahut achcha sikha rahe hai.... It's very Nice to learn from Here....

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

      ism dhanbad??

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

      @@mdalikhan9712 yes but right now, I m in IIT PATNA

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

      @@Priyam233 How college changed, partial dropped or mtech?

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

      @@invincible6230 Persued M.Tech.

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

      Ab kis college me ho bhai ​@@Priyam233

  • @barunjena6171
    @barunjena6171 4 года назад +42

    Thank you so much sir! I did the multiplication table again using the do while loop statement and I got exactly what I wanted earlier but was unable to print it out. Now I can print out authentic multiplication table of any number I want!!! Thank you so much!!
    Edit: it took only 16 lines of code to complete it!

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

      May you please comment the code of multiplication table !

    • @arandomperson5107
      @arandomperson5107 3 года назад +3

      @@ashishredhu2379 This is without using loops.
      # include
      int main()
      {
      printf("Here, we will print the multiplication table of the number entered by you.
      Please enter the number.
      ");
      int a;
      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;
      }

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

      @@arandomperson5107 just use index = index +1 ; using do while loop
      no use for writing this long

    • @Ramesh-ps7yn
      @Ramesh-ps7yn 2 года назад +5

      @@ashishredhu2379 #include
      int main(){
      int num,index=0;
      printf("enter the number which u want multiplication table of
      ");
      scanf("%d", &num);
      do {
      index=index+1;
      printf("%dx%d = %d
      ",num,index, num*index);
      }while(index

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

    Course is going at the perfect pace ! Thank you very much for creating this course !

  • @SadamHussain-zj9ei
    @SadamHussain-zj9ei 5 лет назад +117

    Great course so fast thank you so much.

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

      far*

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

      ​@@yashasviagrawal5685 Mind your own business bro. Don't forget you're talking to Saddam Hussain. If you know, you know😂

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

      🎉❤❤❤❤❤

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

      @Nobitaarmy007 You should ask, "Who was Saddam Hussain". He was a dictator of Pakistan who killed alot of people. You could call him 'Kim Jong Un' of pakistan lolz

  • @AnandaChaudharyOfficial
    @AnandaChaudharyOfficial 5 лет назад +58

    I'm understanding better than college..... Thanks bde Vai🙏💕🙏💕🙏💕🙏💕

    • @vedanshchn
      @vedanshchn 3 года назад +3

      Same bruh. So glad I found these series.

  • @oneseven1
    @oneseven1 3 года назад +3

    //Numbers from 100 to 1
    int main() {
    int num, index = 100;
    printf("Enter your number: ");
    scanf("%d", &num);
    do {
    printf("%d", index);
    index = index - 1;
    } while (index >= num);
    // want to hang vs code temporarily. just change '>' to '

  • @MrKHAN-oi5pw
    @MrKHAN-oi5pw 3 года назад +9

    thank you very much for providing this course for free, that's really great.

  • @suyogmungale3471
    @suyogmungale3471 4 года назад +26

    Harry bhai u r rock
    Thank you so much for providing this great knowledge

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

    #include
    int main()
    {
    int num, index = 0;
    printf("Enter a number
    ");
    scanf("%d", &num);
    do
    {
    printf("%d
    ", index+1);
    index = index + 1;
    } while (index < num);
    return 0;
    }

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

    Bhaiya, aap ka padhane ka style bahot e achha h, neither slow nor fast. Keep doing great work and help the needy people like this.
    Thank you so much

  • @63_shayna79
    @63_shayna79 3 года назад +72

    I'm in a BCA student ,right now I'm in 3rd semester.
    There is c++ in my slaybus .
    But i can't understand it because past semester university take decisions of online class.
    So i think firstly I can learn C from you then I switch up on C ++
    Thank you❤

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

      From which university you belong

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

      No learn c++ first
      Then you can easily switch to c

    • @63_shubham_vadhariya87
      @63_shubham_vadhariya87 3 года назад

      which university you study ?

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

      i am also bca student and in my syllabus there is c language in first year of bca .... and this man helps me alot by doing this all work ...keep going ...

    • @cse-04riturajpal91
      @cse-04riturajpal91 3 года назад +9

      Kisi ne pucha tere se 😂😂

  • @harshs0891
    @harshs0891 2 года назад +7

    Code to print the multiplication table of a given number is
    #include
    int main()
    {
    int num , i=0 ;
    printf("Enter the number you want the multiplication table of
    ");
    scanf("%d", &num);
    printf("The multiplication table of %d is
    ", num);
    do
    {
    printf("%d
    ", num*(i+1));
    i=i+1;
    } while (i

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

      Nice bro, it's working

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

      I tried this ques it has compiled but when I m giving a no.then no table is printed

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

      Good but with for loop it is more easy and structured.

  • @Hunter-ql9ij
    @Hunter-ql9ij 4 года назад +2

    sir, itna acha se samjahya ki meiny apne pehly attempt mein hi multiplicaton table ka programing kr lia. with zero error....thank you so much sir

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

      Syntax btado table ka mujhe bhi krni h

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

    Code to print multiplication table
    #include
    int main(){
    int a,i=1;
    printf("Enter a number");
    scanf("%d",&a);
    do{
    printf("%d
    ",i*a);
    i++;
    }
    while(i

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

    i am student b.tech 1year and iam watching c program language thanku sir jii

  • @rohinitachaudhari9684
    @rohinitachaudhari9684 3 года назад +18

    O bhai sahb college to bs nam ka hai ..asli gyan to aap de rhe ho🔥❤️

    • @Hustler2025
      @Hustler2025 3 года назад +3

      Bhai , Najar mt lga yaar aise, blki duaye de sir ko ki sir aise hi pdhate rahe blki zoom mae bhi aa jaye one one one padhana . lol

  • @softwareword1507
    @softwareword1507 5 лет назад +10

    Bro i have one request for you
    Make this course basic to advance and also tell about how we make graphics in c . And give complete knowledge about c . ❤️❤️❤️❤️
    Love you bro

  • @mr.rupesh_kumar___mrk
    @mr.rupesh_kumar___mrk Год назад

    नहीं भाई एक दम सही और परफेक्ट टेचिंग कर रहे हैं

  • @Chatuphale
    @Chatuphale 5 лет назад +6

    Bhai 3 Sal pahle q nahi mile😫. Afsos but late comes best comes. You are good teacher🙋.

  • @noomanrazakhan6373
    @noomanrazakhan6373 4 года назад +14

    Happy Teacher's Day🙏🏻

  • @MansiAlmiya
    @MansiAlmiya Месяц назад

    The course is amazing bhaiya .such an amazing explanation. Thank you

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

    Are waah iske jariye badi asaani se 19 ka table likh sakte hain😄👏
    Kyuki hm jitna bar v yaad krte tab bhi bhul jate the.
    Very very thank you 😂😂😂🤣🤣😂🤣

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

    Course ka pace ekdam shi hai bhaiya.
    Thanks Harry Bhaiya

  • @nitashah6988
    @nitashah6988 2 года назад +7

    Code to print a multiplication table of a number:
    #include
    int main()
    {
    int a,b=0;
    printf("Enter the number of which you want multiplication table:
    ");
    scanf("%d",&a);
    do
    {
    b = b + 1;
    printf("%d x %d = %d
    ",a,b,a*b);
    }while(b

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

      I'll give you a little better code.
      #include
      int main()
      {
      int i, limit, index = 1;
      printf("Enter the number you want multiplication table of:
      ");
      scanf("%d", &i);
      printf("Enter the limit of your multiplication table:
      ");
      scanf("%d", &limit);
      printf("The multiplication table of %d is :
      ", i);
      do
      {
      printf("%d x %d = %d
      ", i, index, index * i);
      index = index + 1;
      } while (index

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

    Going with a very nice Speed ❤️❤️

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

    dez videos r helping a lott fr my cs exams

  • @viveksoni1923
    @viveksoni1923 5 лет назад +6

    Brother these videos are very helpful. great

  • @AwesomeCodings
    @AwesomeCodings 4 года назад +25

    Bhai course bilkul sahi hai bas aap 10-20 practice questions ki ek file dedo jisse hum log loops ki practice kr skein.
    Jaise school me ma'am bhot sare alag alag questions karati hai pattens etc. Ke

    • @JayPatel_jp10
      @JayPatel_jp10 5 месяцев назад +2

      Bhai tu 2 saal baad comment kar raha hai😅

    • @AwesomeCodings
      @AwesomeCodings 5 месяцев назад +1

      @@JayPatel_jp10 aur tu us 3 saal purane comment par reply kar raha hai

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

      @@AwesomeCodings kyunki tu mujhe reply de sakta hai but Harry tujhe reply nahi dega🙃

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

    I watch our videos regularly..thnx

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

    harry bbhai you doing great job finally i understand th eflow of looops good job brother love you .... i am bca student and c language is in my syllabus ... and with your help i can succed thank you bhai love u bhai .....bhot bhot shukriya .....

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

    Excellent video I have cleared all my doubts

  • @RohanDasRD
    @RohanDasRD 5 лет назад +22

    Bhai Ek Video Chahiye To Learn AI Using Python!

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

    perfect solution of ex table.
    #incude
    int main() {int num, i=1;
    printf("enter the number you want the table of
    ");
    scanf("%d",&num);
    do
    { printf("%dx%d=%d
    ",num,i,num*1);
    i=i+1;}
    while (i

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

    Thankyou bhaiya, your explanation is superb

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

    Thik padha rhe ho bhaiya.koi problem nahi hai.❤

  • @SANJAYDAS-zh7fw
    @SANJAYDAS-zh7fw 2 года назад +1

    Perfect course!! Thank you Harry bhai.

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

    #include
    //multiplication table using loop
    int main()
    {
    int number;
    int i=0;
    printf("enter the no of which multiplication table you want
    ");
    scanf("%d", &number);
    printf("the table of %d is
    ",number);
    do{
    i=i+1;
    printf("%d*%d=%d
    ",number,i,number*i);
    }while(i

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

    Your teaching is World best teaching for me sir😊 I am thankful for your helpful video's 🙏

  • @jyotisingh8056
    @jyotisingh8056 3 года назад +3

    this course is really helping me alot

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

    Bhai mst video hai maine aadha course csukh liya

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

    You are really great person sir...🙏🙏... thank you so much sir...

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

    Bhai ek dum badhiya. Sab smjh aa rha hai abb tak. 🙏🏻

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

    Your teaching method is great!!

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

    its easy to understand for beginners, thank you sirji ....

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

    हरि भाई आप मस्त तरीके से समझाते हो

  • @AshuAshupal-j6m
    @AshuAshupal-j6m 3 месяца назад +2

    We need more ques for practice 😊

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

    Great teaching with great speed 😘😘😘

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

    Great job..
    Take love from Bangladesh

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

    Harry bhai aap to bahut acha padate ho kash aap mere teacher hote college me

  • @MayankSharma-jl6rc
    @MayankSharma-jl6rc 4 года назад +3

    Sir , you are going with decent speed !!,you are great !!

    • @LOL-pj5lo
      @LOL-pj5lo 7 месяцев назад

      brother can you help me with a code??

    • @LOL-pj5lo
      @LOL-pj5lo 7 месяцев назад

      #include
      /*
      factorial calculator using do while
      */
      int main()
      {
      int a, n, i = 0;
      scanf("%d" , &n);
      do
      {
      i += 1;
      a = n;
      a = a*(n - i);


      } while (i < (n-1));
      printf("%d", a);
      return 0;
      }

    • @LOL-pj5lo
      @LOL-pj5lo 7 месяцев назад

      can you please tell What Im doing wrong??....

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

    definately better than college thankyou so much

  • @anirudh1045
    @anirudh1045 5 лет назад

    Bohot sahi course speed hai sub smajh mein aa raha hai harry bhai😇😇😇😇😇😇

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

    Bhau complete pace neither fast nor slow

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

    Multiplication table answer
    #include
    int main()
    {
    int num, tab = 1;
    printf("Which multiplication table do you want?
    ", num);
    scanf("%d", &num);
    printf("You entered %d for multiplication table
    ", num);
    do
    {
    printf("%d x %d = %d
    ", num, tab, num * tab);
    tab = tab + 1;
    } while (tab < 11);
    return 0;
    }

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

      great vai

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

      @@boxydial check this
      #include
      int main()
      { int i,j,index=1;
      printf("enter whose table you want:
      ");
      scanf("%d",&i);
      printf("enter till what you want to multipy:
      ");
      scanf("%d",&j);
      do
      {
      printf("%d*%d=%d
      ", i,index,i*index);
      index=index+1;
      }
      while(index

  • @ManishDutt-nh9dd
    @ManishDutt-nh9dd 3 года назад +1

    waahhh bro waahhh thank you so much bro 😀 muje samaj aaa gyaaa do while loop 🤟😁

  • @dhruvilshah7937
    @dhruvilshah7937 4 года назад +10

    *MULTIPLICATION CASE CODE*\\SIR YOU ARE GREAT
    #include
    int main()
    {
    int x,y,z;
    y=1;
    printf("Enter Number for multiplication table
    ");
    scanf("%d",&x);
    do
    {
    printf("%d*%d=%d
    ",x,y,x*y);
    y=y+1;
    } while (y

  • @SoyalShah-x9t
    @SoyalShah-x9t 10 месяцев назад

    #include
    int main()
    {
    int i=0, j;
    printf("Enter a number which you want to obtain multiplication table
    ",j);
    scanf("%d",&j);
    do{
    printf("%d
    ",i);
    i=i+j;
    }while (i

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

    Bhayia ap bohot accha palate ho💥❤

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

    the pace is normal understandable enough thanks

  • @devanshijain4395
    @devanshijain4395 3 года назад +3

    Thank you for this course sir

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

    sir can you make a separate video about return statement, like what's its purpose and how does it work, it was in python too during my school days and I couldn't understand its working, how's it different from print statement ?

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

    thnks finally my loops concept is cleared👍🏻

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

    bhaiyo harry bhai 1 M jaldi se jaldi complete karo

  • @smgaming8197
    @smgaming8197 5 лет назад +1

    Bohat khub harry bhai..👌

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

    #include
    int main(int argc, char const *argv[])
    {
    int num, iteration = 0;
    printf("--> Enter a number for its mathematical table:
    ");
    scanf("%d", &num);
    do
    {
    iteration++;
    printf("%d * %d = %d
    ", num, iteration, num * iteration);
    } while (iteration < 10);
    return 0;
    }

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

    i changed it a bit cause i actually tried the loop at the very beginning of the video this is what i have done instead of index = 0 and making 2 objects 7:31
    int ash;
    printf("the number of time you want to print'ash'
    ");
    scanf("%d", &ash);
    do
    {
    ash = ash - 1;
    printf("ash
    ");
    } while (ash>0);

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

    Great job Harry bhai

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

    It was really helpful,thank you..🙏

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

    you are teaching with good speed

  • @atifmalik8012
    @atifmalik8012 10 месяцев назад

    Multiplication table using do while loop
    #include
    int main() {
    int n, i=1;
    printf("Enter the number you want multiplication table of :");
    scanf("%d",&n);
    do{
    printf("%d×%d=%d
    ",n,i,n*i);
    i +=1;
    }while(i

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

    Thanks a lot sir for this series.😊😊😍😍😍

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

    Sir your course is perfect and explanation is very good thank you very much 💖💖💖

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

    Sir Jitna padha hai maine utna samajh ma Aaya hai

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

    harry bhai speed normal he kyun ke achi tara samjh me aja ta he aur maza ata he

  • @Cricketclips890-mt3fn
    @Cricketclips890-mt3fn 11 месяцев назад

    Sir all is well going at your Platform❤❤❤ but the thing is if you helps us to solve many questions it would be more Amazing

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

    Ekdum op ho aap harry sir

  • @siddhigaikwad3266
    @siddhigaikwad3266 3 года назад +3

    We really appreciate your efforts for making all the videos. Your videos are really very helpful to us and Thankyou soo much.

  • @SanjayYadav-by4ie
    @SanjayYadav-by4ie Год назад +1

    I am watching this video 2023 sir your expilattion amzing every concep Cristal and clear thanks up lot😊

    • @Sarthak-wh1dl
      @Sarthak-wh1dl 8 месяцев назад

      Bhai spellings💀💀😂

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

    Now even when you didn't ask us to make anything I still did :)
    #include
    int main() {
    int TableNumber;
    int MultiplyBy = 1;
    printf("The table of ");
    scanf("%d", &TableNumber);
    do {
    printf("%d X %d = %d
    ", TableNumber, MultiplyBy, TableNumber*MultiplyBy);
    MultiplyBy = MultiplyBy + 1;
    } while(MultiplyBy < 11);
    return 0;
    }
    // Love you harry ❤❤❤❤

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

    thanksss bahi for such an amazing cource

  • @JayKumarKashyap-i4f
    @JayKumarKashyap-i4f 5 месяцев назад

    #include
    int main()
    {
    int num, steps, ans;
    printf("Enter the number for the multiplication table you want.
    ");
    scanf("%d", &num);
    printf("Enter the number for the steps upto which you want the table.
    ");
    scanf("%d", &steps);
    int i = 0;
    do
    {
    i = i + 1;
    printf("%d * %d = %d
    ", num, i, num * i);
    } while (i < steps);
    return 0;
    }

  • @Ayushsharma-qc7qx
    @Ayushsharma-qc7qx 3 года назад

    Bhi yrr love u 😍😍😍
    Best teacher

  • @manishsingh-yd6vc
    @manishsingh-yd6vc 3 года назад +1

    sir aap bohot achai tra se smjhate ho sir oske liy very thanks full for you but sir mera ek doubt tha ki aapne jo int main ke baad brekit me %d ka use kiya he wo kiu kiya he sir please solve my doubt

  • @madhamitadas
    @madhamitadas 5 месяцев назад

    #include
    int main()
    {
    int number, index=0;
    printf("Enter the number ");
    scanf("%d", &number);
    do{
    printf("%d
    ", index+1);
    index=index+1;
    }
    while(index

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

    You made it freaking easy

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

    ek dam sahi padha rahe ho bhai

  • @IT__KumariTejaswini-xv9ii
    @IT__KumariTejaswini-xv9ii 5 лет назад +1

    You r very great man!!!!!!... 😎😎😎

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

    Course sahi speed me chal raha hain harry bhai
    Koi dikkat nahi hain

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

    completed challenge 1 to print table
    #include
    int main()
    {
    int num, a = 1;
    printf("enter the table you wanna print
    ");
    scanf("%d", &num);
    do
    {
    printf("%d x %d = %d
    ", num,a, a*num);
    a = a + 1;
    } while (a

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

    sir kindly make a video on analysis and design of algorithms Please

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

    Badhia lag raha hai Harry bhai

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

    Very nice kya sikateho bhaiyya 😍

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

    u are teaching so very good sir and its course no fastly

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

    my perfect tutor

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

    Thanks Harry Bhaiya

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

    agar printf ke andar index +1 karne ke ba
    dle printf ko ( index = index + 1 )ke baad rakhe to bhi zero ke badle 1 se start hoga

  • @Arpitgaming-q7y
    @Arpitgaming-q7y 3 года назад

    Bahut badiya hary bhai osm video

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

    Sir you are a slow talker, I watch your videos after doubling the speed.

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

    Feels good to keep going ahead in you c programming series