Loops in One Shot | C Programming | Lecture 3 | Complete C Course

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

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

  • @CollegeWallahbyPW
    @CollegeWallahbyPW  8 месяцев назад +64

    Use "DSA20" To Get Extra 20% Off On All Decode Batches
    Enroll Now-pwskills.com/category/programming-courses/?
    📌Book you 1:1 career counselling session with our Experts, Fill the form Now-forms.gle/iaaC4EkRw52x9BXY9

    • @VIJAYNADEKAR-hr2iq
      @VIJAYNADEKAR-hr2iq 7 дней назад

      सर armstrong नंबर की डेफिनेशन आप ने गलत बता दी। जरूरी नहीं हर बार cube की ही sum हो। उतने पावर की sum करनी है जितने digits उस नंबर में हो । 😊🙏

  • @Aysx.
    @Aysx. Год назад +777

    The amount of happiness you get after a code finally runs🙂

  • @mohammadfaisaliqbal9967
    @mohammadfaisaliqbal9967 Год назад +161

    If you have a good mentor who can teach you in the most appropriate way then everything looks to much easy..❤

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

      bhai 2:21:25 m sir ne ki bola manvi mam ne ek lecture karwaya hai operators ke upar.........bhai vo video ka link de sakte ho bhai merko mil nahi raha hai video vo wala

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

      @@shubhamkumar3139Bhai i think sir janvi mam ki Java playlist ki baat kar rahe Hain..wait Karo main link send karta hoon😇

  • @taichimashima4389
    @taichimashima4389 Год назад +150

    40:42 Problem 4 : Print the AP - 1,3,5,7,9.. upto ‘n’ terms
    50:34 **Printing AP WITHOUT using MATHEMATICAL FORMULA
    1:01:16 **Problem 7 : Print the AP - 100,97,94.. upto all terms which are positive
    1:13:07 Problem 8 : Program to find out if given number is prime or not
    1:33:10
    1:38:28 Problem 9 : Print all odd numbers from 1 to 100 using CONTINUE
    1:49:47 INFINITE LOOP
    2:03:50
    2:12:44 Problem 17 : Predict the output 8
    2:13:56 Problem 18 : Predict the output 9
    2:21:53 Problem 19 : Program to count digits of a given number
    2:31:20 Problem 20 : Program to print sum of digits of a given number
    2:39:26 Homework 7 : Program to print sum of even digits of a given number
    2:40:22 Problem 21 : Program to print reverse of a given number
    2:53:27 Homework 8 : Program to print sum of given number and its reverse
    2:54:04 Problem 22 : Print sum of series - 1+2-3+4-5+6.. upto ‘n’ terms
    3:07:40 Problem 23 : Print the factorial of given number
    3:16:09 Homework 9 : Print the factorials of first ‘n’ numbers
    3:21:43 Problem 25 : Print the nth fibonacci number
    3:38:36 Homework 10 : Print the first ‘n’ fibonacci numbers
    3:39:39 Problem 26 : Given 2 numbers ‘a’ and ‘b’ , find ‘a’ raised to the power ‘b’.
    3:48:09 Problem 27 : Print all alphabet and their corresponding ASCII values
    3:55:31 Homework 11 : Print all armstrong numbers between 1 and 500

    • @narendrasoni8071
      @narendrasoni8071 Год назад +12

      Itni mehnat kyu krta ho jab already commented hi toh😊

    • @AmitKumar-ec7le
      @AmitKumar-ec7le Год назад +2

      Gajab bru

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

      Sir Excellent 👌 teaching 😊

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

      kisi ne homework solve kiya hai? please kese hoga print table of n . aur odd number wala .

    • @Heckvlogs
      @Heckvlogs 9 месяцев назад +2

      Comment out krde Bhai apna comment😂😂

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

    Timestamps :
    00:00 Introduction
    01:35 What and Why
    05:53 FOR LOOP
    09:50 How For Loop works
    30:15 Problem 1 : Print all numbers from 1 to 100
    34:56 Problem 2 : Print all even numbers from 1 to 100
    37:36 Homework 1 : Print all odd numbers from 1 to 100
    37:50 Problem 3 : Print the table of 19
    40:07 Homework 2 : Print the table of ‘n’. Take ‘n’ input from user
    40:42 Problem 4 : Print the AP - 1,3,5,7,9.. upto ‘n’ terms
    47:13 Problem 5 : Print the AP - 4,7,10,13.. upto ‘n’ terms
    50:34 **Printing AP WITHOUT using MATHEMATICAL FORMULA
    58:28 Problem 6 : Print the GP - 1,2,4,8,16.. upto ‘n’ terms
    1:00:55 Homework 3 : Print the GP - 3,12,48.. upto ‘n’ terms
    1:01:16 **Problem 7 : Print the AP - 100,97,94.. upto all terms which are positive
    1:10:48 Homework 4 : Print the GP - 100,50,25.. upto ‘n’ terms
    1:12:42 BREAK statement
    1:13:07 Problem 8 : Program to find out if given number is prime or not
    1:38:16 CONTINUE statement
    1:38:28 Problem 9 : Print all odd numbers from 1 to 100 using CONTINUE
    1:43:41 Homework 5 : Print all even numbers from 1 to 100 using CONTINUE
    1:44:15 WHILE LOOP
    1:49:47 INFINITE LOOP
    1:53:11 Problem 10 : Predict the output 1
    1:56:34 Problem 11 : Predict the output 2
    1:57:33 Problem 12 : Predict the output 3
    1:58:58 Problem 13 : Predict the output 4
    1:59:34 Post / Pre - Increment / Decrement operators
    2:05:03 Problem 14 : Predict the output 5
    2:07:31 Problem 15 : Predict the output 6
    2:10:38 Problem 16 : Predict the output 7
    2:12:44 Problem 17 : Predict the output 8
    2:13:56 Problem 18 : Predict the output 9
    2:15:55 Homework 6 : Predict the output 10
    2:16:29 DO WHILE LOOP
    2:21:25 Questions using Operators
    2:21:53 Problem 19 : Program to count digits of a given number
    2:31:20 Problem 20 : Program to print sum of digits of a given number
    2:39:26 Homework 7 : Program to print sum of even digits of a given number
    2:40:22 Problem 21 : Program to print reverse of a given number
    2:53:27 Homework 8 : Program to print sum of given number and its reverse
    2:54:04 Problem 22 : Print sum of series - 1+2-3+4-5+6.. upto ‘n’ terms
    3:07:40 Problem 23 : Print the factorial of given number
    3:16:09 Homework 9 : Print the factorials of first ‘n’ numbers
    3:21:43 Problem 25 : Print the nth fibonacci number
    3:38:36 Homework 10 : Print the first ‘n’ fibonacci numbers
    3:39:39 Problem 26 : Given 2 numbers ‘a’ and ‘b’ , find ‘a’ raised to the power ‘b’.
    3:48:09 Problem 27 : Print all alphabet and their corresponding ASCII values
    3:55:31 Homework 11 : Print all armstrong numbers between 1 and 500

  • @raj_creation.9835
    @raj_creation.9835 9 месяцев назад +8

    Maja aa gya sir 😊❤

  • @indhoneyyt737
    @indhoneyyt737 2 года назад +62

    Sir jaldi jaldi c language pura complete kara dijiye mid sem exam coming soon🥰❤️

  • @arya60
    @arya60 2 года назад +59

    Bhot bhot dhanyawad sir jii ❤️🥰👍
    We can never forget the role of teachers like youuu in building our career....

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

    Sir itna saral bhasha me shikhaye pura dimak me feed ho gaya 😢😢itna egy aaj tk kisi ne nahi bataya 😢thanku so much sir❤❤🙏🙏🙏

  • @AjeetKumar-os5wq
    @AjeetKumar-os5wq 3 месяца назад +5

    00:00 Introduction
    01:35 What and Why
    05:53 FOR LOOP
    09:50 How For Loop works
    30:15 Problem 1 : Print all numbers from 1 to 100
    34:56 Problem 2 : Print all even numbers from 1 to 100
    37:36 Homework 1 : Print all odd numbers from 1 to 100
    37:50 Problem 3 : Print the table of 19
    40:07 Homework 2 : Print the table of ‘n’. Take ‘n’ input from user
    40:42 Problem 4 : Print the AP - 1,3,5,7,9.. upto ‘n’ terms
    47:13 Problem 5 : Print the AP - 4,7,10,13.. upto ‘n’ terms
    50:34 **Printing AP WITHOUT using MATHEMATICAL FORMULA
    58:28 Problem 6 : Print the GP - 1,2,4,8,16.. upto ‘n’ terms
    1:00:55 Homework 3 : Print the GP - 3,12,48.. upto ‘n’ terms
    1:01:16 **Problem 7 : Print the AP - 100,97,94.. upto all terms which are positive
    1:10:48 Homework 4 : Print the GP - 100,50,25.. upto ‘n’ terms
    1:12:42 BREAK statement
    1:13:07 Problem 8 : Program to find out if given number is prime or not
    1:38:16 CONTINUE statement
    1:38:28 Problem 9 : Print all odd numbers from 1 to 100 using CONTINUE
    1:43:41 Homework 5 : Print all even numbers from 1 to 100 using CONTINUE
    1:44:15 WHILE LOOP
    1:49:47 INFINITE LOOP
    1:53:11 Problem 10 : Predict the output 1
    1:56:34 Problem 11 : Predict the output 2
    1:57:33 Problem 12 : Predict the output 3
    1:58:58 Problem 13 : Predict the output 4
    1:59:34 Post / Pre - Increment / Decrement operators
    2:05:03 Problem 14 : Predict the output 5
    2:07:31 Problem 15 : Predict the output 6
    2:10:38 Problem 16 : Predict the output 7
    2:12:44 Problem 17 : Predict the output 8
    2:13:56 Problem 18 : Predict the output 9
    2:15:55 Homework 6 : Predict the output 10
    2:16:29 DO WHILE LOOP
    2:21:25 Questions using Operators
    2:21:53 Problem 19 : Program to count digits of a given number
    2:31:20 Problem 20 : Program to print sum of digits of a given number
    2:39:26 Homework 7 : Program to print sum of even digits of a given number
    2:40:22 Problem 21 : Program to print reverse of a given number
    2:53:27 Homework 8 : Program to print sum of given number and its reverse
    2:54:04 Problem 22 : Print sum of series - 1+2-3+4-5+6.. upto ‘n’ terms
    3:07:40 Problem 23 : Print the factorial of given number
    3:16:09 Homework 9 : Print the factorials of first ‘n’ numbers
    3:21:43 Problem 25 : Print the nth fibonacci number
    3:38:36 Homework 10 : Print the first ‘n’ fibonacci numbers
    3:39:39 Problem 26 : Given 2 numbers ‘a’ and ‘b’ , find ‘a’ raised to the power ‘b’.
    3:48:09 Problem 27 : Print all alphabet and their corresponding ASCII values
    3:55:31 Homework 11 : Print all armstrong numbers between 1 and 500

  • @samislost550
    @samislost550 2 года назад +104

    We want Lecture 4 Sir...Maza Aa Gaya Sir is lecture me🙌❤️

  • @MUSIC_MAYUR
    @MUSIC_MAYUR Год назад +35

    The amount of happiness you get after a code finally runs🙂okay

  • @sahil-anurag
    @sahil-anurag Год назад +1753

    who are from semester 1 student?

  • @JaspreetKaur-j1w5w
    @JaspreetKaur-j1w5w 3 месяца назад +3

    itna acha explanation aaj tak nhi dekha i am feeling like i went from zero to hero..... respect for you sir thank you so much 🤩🤩😁♥♥♥

  • @AkshayAloriyaB22BB005
    @AkshayAloriyaB22BB005 Год назад +91

    I am student of IITJ and i have seen your video ,you provide very good content to the students to buid their career
    thanks for providing good code.
    happy coding!!

    • @khawaishsoni7873
      @khawaishsoni7873 Год назад +3

      nice to meet you i am from IIT BHU

    • @MERAZMESAAGE
      @MERAZMESAAGE Год назад +15

      I am from home
      After taking 2 years of gap

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

      nice to meet you I am from IIT K

    • @8dsong196
      @8dsong196 Год назад +2

      I am from vit Vellore

    • @ManjeetSingh-xz5tc
      @ManjeetSingh-xz5tc Год назад +1

      From VNIT Nagpur, are you people allowed a reference book in exam as here our clg is taking this subject very seriously they make such a paper that they even allow us to carry a book in the exam hall, I am just wondering what's happening in IIT

  • @samislost550
    @samislost550 2 года назад +242

    Sir Jaldi Jaldi Video Laiye Aap C Language me itna interest Bana diye hai ki wait nhi ho raha and Exam bhi hai Jan me sir So please Complete This series as soon as possible...❤️✨

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

      @@RohitSingh-jg3sw learn python,,
      It's very easy language,,
      Easily samaj aa jayegi 😊,,
      &
      Then DSA bhi python me kar sakte ho,,
      Python & javascript is most popular language now

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

      @@jayw698 but he's saying that he's in 1st year.....So what will he do in exam....Maybe C Language is 1st year syllabus

    • @jayw698
      @jayw698 2 года назад +14

      @@samislost550 exam ke liye pyqs dekho ,,,
      Jitni c language important hai utna karke nipta do,,
      C is important just for college exam,,
      You should not give much importance to college exam,, college ka syllabus prepare karne se placement nahi hoga
      One more suggestion-
      C language me tumhe coding continue nahi karni chahiye,,, iske baad c++ pe switch kar jao
      Reason - c++ is object oriented programming & c++ has STL library which will make data structures easy
      C & c++ are 80% same hai,, so switching from c to c++ is easy,,,
      Yeah one more thing c language me dikkat ho rahi hai to python kar sakte ho ,,

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

      @@jayw698 Thank You So Much For Suggestions ❤️.....Gonna do it right now
      Starting to learn C++ but continuing C also.......Waise bhi sir 10 din me upload karte hai c ka to cover ho jayega.....

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

      @@samislost550 👍

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

    worth it lecture to watch for freshers and even for those who just want to clear their basics !!
    Thank u sir...❤❤❤❤❤❤

  • @Programming_p
    @Programming_p 9 месяцев назад +23

    Semester 2 ✊

  • @Siya_2k25
    @Siya_2k25 8 дней назад +1

    Hindi medium se padhe hue the socha nhi tha itna acha padhane wale teacher mil jayenge ❤

  • @TishaSahu-m6o
    @TishaSahu-m6o Год назад +22

    You have proved that pw's lectures are best 😊.

  • @kiyaekobenzai9821
    @kiyaekobenzai9821 Год назад +21

    such a masterpiece this lecture was! sir you made each and every concept seem so easy.

  • @malvado8267
    @malvado8267 Год назад +26

    2:53:30 store value of n in any other variable ,for example a.
    int a=n;

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

      🙏

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

      Thanks

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

      Thanks bhai 🙂

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

      Can you give us solution?

    • @AMBRATLALROOPCHANDANI
      @AMBRATLALROOPCHANDANI 6 месяцев назад +2

      @@aryangupta6660 int n;
      printf("enter the number ");
      scanf("%d",&n);
      int a=n;
      int r=0;
      int x;
      while(n!=0){
      x=n%10;
      r=r*10;
      r=r+x;
      n=n/10;
      }
      printf("the reverse of number is %d
      ",r);
      printf("the sum of both is %d",r+a);

  • @Abhay-yq3xg
    @Abhay-yq3xg 4 месяца назад +2

    The simplest way to learn the C language. Thank you very much sir.

  • @armaan39000
    @armaan39000 6 месяцев назад +4

    1:07:29 different thing .(multiple variables in for loop)
    3:51:04 what is typecasting

  • @not_human...
    @not_human... Год назад +75

    at 1:57:21 there was a semi colon just after the condition of while statement while(i

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

      Yes you got that right even I was thinking the same.

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

      Same here

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

      Yes , you got it
      I am thinking also

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

      53:00 can someone explain the without using maths method?
      Nhi samajh aaya

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

      yes you are right

  • @sumontagarai9228
    @sumontagarai9228 2 года назад +17

    1:56:48 sir in this question there is semi colon in the end of line of while so the while loop will not run .
    Then there will be no output

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

      While loop is run infinite times

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

      @nishantsingh3216 as there is a semi colon at the end of the while loop for that it will not run . U can check it in ur compiler.❤

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

      @@sumontagarai9228 it will run and it will run infinite times but nothing print.

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

      Yaa bro i have now seen it thanks for your cooperation.❤️

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

      @@sumontagarai9228 I write that code in upper comment if u write printf("%d ", i) in between while(I

  • @trishitamaity3496
    @trishitamaity3496 Год назад +10

    Sir please continue this series. your teaching style is outstanding.

  • @lakshkumar3118
    @lakshkumar3118 7 месяцев назад +10

    Sir mst explanation very very thanks 🙏🙏🙏 kaise khu etna acha content ko dekh ke

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

    Sir great majha aa gaya padhne ka aap bahut achcha padhate hai sir
    Thank you so much

  • @sahilrepuriya3205
    @sahilrepuriya3205 2 года назад +14

    what a amazing lecture sir falling in love with coding now😍

  • @learnskills1061
    @learnskills1061 Год назад +19

    Alhumdulilah complete 😍😍

  • @Rajveer-yy7ui
    @Rajveer-yy7ui Год назад +6

    Completely dependent on you for C programming. THANK YOU SIR.

  • @MattamSujitha
    @MattamSujitha 9 месяцев назад +7

    Sir in 2nd question
    predict the output for while loop..
    Int I=1;
    While(I

    • @Multi_gamer_13
      @Multi_gamer_13 4 дня назад

      @@MattamSujitha yes bro i got that 😗

  • @pareklaskar
    @pareklaskar 14 дней назад

    Thank you sir great video as a 10th class seba student i was having a hard time with this chp.

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

    Maza aa gaya sir... And you don't need to improve yourself sir... You are really a very good teacher... Loop pura acche se samjha diya apne

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

    2:21:53 Problem 19 : Program to count digits of a given number
    2:31:20 Problem 20 : Program to print sum of digits of a given number
    2:39:26 Homework 7 : Program to print sum of even digits of a given number
    2:40:22 Problem 21 : Program to print reverse of a given number
    2:53:27 Homework 8 : Program to print sum of given number and its reverse
    2:54:04 Problem 22 : Print sum of series - 1+2-3+4-5+6.. upto ‘n’ terms
    3:07:40 Problem 23 : Print the factorial of given number
    3:16:09 Homework 9 : Print the factorials of first ‘n’ numbers
    3:21:43 Problem 25 : Print the nth fibonacci number
    3:38:36 Homework 10 : Print the first ‘n’ fibonacci numbers
    3:39:39 Problem 26 : Given 2 numbers ‘a’ and ‘b’ , find ‘a’ raised to the power ‘b’.
    3:48:09 Problem 27 : Print all alphabet and their corresponding ASCII values
    3:55:31 Homework 11 : Print all armstrong numbers between 1 and 500

  • @HariharSharma-q4c
    @HariharSharma-q4c Год назад +19

    Sir you are all-rounder !😊
    You can teach anything whether it's the maths or any other programming language!!
    Really helpful!!

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

    aapka lacture start se last tak dekh liya . thank you sir😇😇

  • @mountaingreek747
    @mountaingreek747 8 месяцев назад +6

    3:21:00 This code won't work for factorials with large values
    so use long long int instead!
    print("%lld", product).

  • @madhubera4808
    @madhubera4808 10 месяцев назад +5

    Who are now second semester? ❤and understand this lecture very easy way 💚

  • @NeelamSharma-ub2sf
    @NeelamSharma-ub2sf 2 года назад +11

    Sir PW is the best
    Waiting for lecture -4👍👍

  • @sabyasachisingha5996
    @sabyasachisingha5996 Год назад +13

    But sir in wap to reverse a given number 2:49:00
    *If i want to reverse 120 it gives 21..and not 021*
    Other non zero digit are going good

  • @prajwalantapur
    @prajwalantapur Месяц назад +2

    Sir 1:39:21 the question is to print odd numbers from 1 to 100 you can do like this also which is easy for (i=1;i

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

    Wow yaar
    Bhohoot acchi tarah samaj aara hai❤

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

    Really it is very nice to learn coding with you sir❤❤

  • @onetapgaming123-v2x
    @onetapgaming123-v2x Год назад +11

    Watched the whole lecture 🎉🎉🎉🎉 Long but up to point ❤❤

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

    1:56:52 Yaha par while loop infinite mode me chala jayega just because of that semicolon (;) .... Infinite mode me islie jayega kyuki i ki value hamesha 1 hi rhegi aur condition ko baar baar satisfy karega i.e. 1 is always less than 10.

  • @Aachal_Sahni
    @Aachal_Sahni 6 месяцев назад +1

    Thank you sir 🙏
    Maza aa gaya 😊
    Avi tak me ne pura lecture complete dekh liya 😊
    Or saari chije samajh aa gayi .

  • @amarkumar-wx1yt
    @amarkumar-wx1yt 6 месяцев назад +1

    You are an extraordinary teacher. Thank you for your excellent explanation.

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

    Best teacher for coding I have ever seen ♥️

  • @ishikasingh137
    @ishikasingh137 10 месяцев назад +3

    Thank u 😊sir for this amazing lecture ❤ Maza aa gya😁

  • @TheFlavorFactory-Ankita
    @TheFlavorFactory-Ankita Год назад +6

    Sir we need a teacher like you 😀

  • @Kingsingh-sh9el
    @Kingsingh-sh9el 3 месяца назад +1

    Completed this Lecture! Although it took me more time but worth it...Thanks sir!

  • @ridazaidi7995
    @ridazaidi7995 9 месяцев назад +2

    I watched many videos on RUclips, but no one explained every topic so well, sir, you explained it very well, thank you very much. ❤❤

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

    sir whole lecture is great but please make a separate lecture for switch, go to etc... miscellaneous which is important for exam point of view..

  • @nutankumari6343
    @nutankumari6343 Год назад +10

    Maza aa Gaya Sir ❤ Thank you for the amazing lecture

  • @natur613
    @natur613 10 месяцев назад +3

    Mja aa gya❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

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

    One of the best RUclips videos

  • @punitpawar8579
    @punitpawar8579 6 дней назад

    Thanks a lot sir i cannot imagine myself in the coding line if hadn't seen your videos

  • @MahendrasinghBhadoriya-zp6ly
    @MahendrasinghBhadoriya-zp6ly 7 месяцев назад +3

    sir mai aapke video starting se dekh raha hu or muje pahle c language nahi aati thi but aapke video starting se dekhney ke baad aab muje c language learn karney mai or usse question solve karney mai bahut acha lag raha hai thank you so much sir 😁😄😇♥♥

  • @PramodSharma-ut9ud
    @PramodSharma-ut9ud Год назад +4

    Thank you so much sir for this amazing lecture.🙂 This lecture is very helpful for students.

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

    Maja aaya aap se padh kar sir❤❤❤❤❤

  • @MrPerfect-tq7wb
    @MrPerfect-tq7wb 7 месяцев назад +1

    Sir kinti baar shukriya kahu aapko, itne saare acche questions.Ekdam se sab chamak gya. Maja aa gya lecture number 3 krke. Again THANK YOU SIR.

  • @punitpawar8579
    @punitpawar8579 14 дней назад

    Hello sir I've completed your 1st and 2nd lecture . And those all were really very easy to understand to learn

  • @anshulshrivastava5481
    @anshulshrivastava5481 Год назад +15

    At 2:15:46 output of the question is:
    x=3,y=1
    x=1,y=3
    x=0,y=4
    x=-1,y=5

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

      x=-1 and y=5
      why these got printed???
      here x

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

      ​@@Miratishaycle the given condition is x>=0 . Not x>0

  • @Dipesh-c3x
    @Dipesh-c3x 6 месяцев назад +3

    Best c teacher in the 🌌 galaxy🎉❤

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

    I'm just dealing with this subject becoz of your content and the way of teaching is commendable sir .
    "Aap same us feel ke satb samjhate h jis tarah hum first time kisi language ko padhte wakt feel karte hain, ek alag he world lagta h pehel baar ye sab dekh or padh kar

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

    Best teacher in this field

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

    Very good video
    Lots of problem
    Solving these and understanding the logics will improve the students

  • @AbhaySingh-om3vw
    @AbhaySingh-om3vw Год назад +4

    This is a very informative lecture.
    Thank you sir!

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

    1:30:01 we can use else
    {
    printf(""It is a prime number);
    break;
    }

  • @AYUSHKUMAR-dj1jy
    @AYUSHKUMAR-dj1jy Год назад +26

    As a first year i feel that this is best and detail video on loop in the youtube and question are also good
    maza aaya padh ke 😃

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

    Bahut mja aaya sir 😊

  • @nits.review
    @nits.review 2 месяца назад +1

    Maja to definitely aa gaya sir❤

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

    1:57:27 the answer sir told is wrong it would not run while loop as there is semicolon

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

    Thankyou ❤️ so much sir for this lecture bcz before this lecture i have many common doubt in loop but I watch this lecture all my doubt clear 😊😊

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

    Yes sir kaphi mja aaya is lecture me

  • @Studyislife
    @Studyislife Год назад +12

    Although I am learning Java from Manvi Ma'am...But this series is really very helpful for revision of concepts and practice of questions...Thank you so much sir for this series...

  • @AMBRATLALROOPCHANDANI
    @AMBRATLALROOPCHANDANI 6 месяцев назад +18

    solution of hw at 2:53:00 is
    int n;
    printf("enter the number ");
    scanf("%d",&n);
    int a=n;
    int r=0;
    int x;
    while(n!=0){
    x=n%10;
    r=r*10;
    r=r+x;

    n=n/10;

    }

    printf("the reverse of number is %d
    ",r);
    printf("the sum of both is %d",r+a);

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

    Mazaa aagya sir pura lecture complete dekha hai

  • @shrey.1729
    @shrey.1729 Месяц назад

    sir mazaa agya mst ekdum clear h concepts

  • @Infinity-ug6uj
    @Infinity-ug6uj 4 месяца назад +3

    Maza aa gaya Sir same C++ bhi karwao 😆😁

  • @nidhiraj9686
    @nidhiraj9686 2 года назад +14

    sir maza aa gya, please bring lec4 asap and thank you so much

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

    I am waiting .. For new lecture... 🤗🤗

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

    sari chize smj ayi ab khudse solve krne ki practice krni hogi

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

    Apke jaisa sir koye concept clear nhi kr skta ....ap best ho..❤

  • @JaydevsinhMahida
    @JaydevsinhMahida 5 месяцев назад +57

    I JUST PERFECTLY USED LOOPS :
    1. JAY SHRI RAM
    2. JAY SHRI RAM
    3. JAY SHRI RAM
    4. JAY SHRI RAM
    5. JAY SHRI RAM
    6. JAY SHRI RAM
    7. JAY SHRI RAM
    8. JAY SHRI RAM
    9. JAY SHRI RAM
    10. JAY SHRI RAM
    11. JAY SHRI RAM
    12. JAY SHRI RAM
    13. JAY SHRI RAM
    14. JAY SHRI RAM
    15. JAY SHRI RAM
    16. JAY SHRI RAM
    17. JAY SHRI RAM
    18. JAY SHRI RAM
    19. JAY SHRI RAM
    20. JAY SHRI RAM
    21. JAY SHRI RAM
    22. JAY SHRI RAM
    23. JAY SHRI RAM
    24. JAY SHRI RAM
    25. JAY SHRI RAM
    26. JAY SHRI RAM
    27. JAY SHRI RAM
    28. JAY SHRI RAM
    29. JAY SHRI RAM
    30. JAY SHRI RAM
    31. JAY SHRI RAM
    32. JAY SHRI RAM
    33. JAY SHRI RAM
    34. JAY SHRI RAM
    35. JAY SHRI RAM
    36. JAY SHRI RAM
    37. JAY SHRI RAM
    38. JAY SHRI RAM
    39. JAY SHRI RAM
    40. JAY SHRI RAM
    41. JAY SHRI RAM
    42. JAY SHRI RAM
    43. JAY SHRI RAM
    44. JAY SHRI RAM
    45. JAY SHRI RAM
    46. JAY SHRI RAM
    47. JAY SHRI RAM
    48. JAY SHRI RAM
    49. JAY SHRI RAM
    50. JAY SHRI RAM
    51. JAY SHRI RAM
    52. JAY SHRI RAM
    53. JAY SHRI RAM
    54. JAY SHRI RAM
    55. JAY SHRI RAM
    56. JAY SHRI RAM
    57. JAY SHRI RAM
    58. JAY SHRI RAM
    59. JAY SHRI RAM
    60. JAY SHRI RAM
    61. JAY SHRI RAM
    62. JAY SHRI RAM
    63. JAY SHRI RAM
    64. JAY SHRI RAM
    65. JAY SHRI RAM
    66. JAY SHRI RAM
    67. JAY SHRI RAM
    68. JAY SHRI RAM
    69. JAY SHRI RAM
    70. JAY SHRI RAM
    71. JAY SHRI RAM
    72. JAY SHRI RAM
    73. JAY SHRI RAM
    74. JAY SHRI RAM
    75. JAY SHRI RAM
    76. JAY SHRI RAM
    77. JAY SHRI RAM
    78. JAY SHRI RAM
    79. JAY SHRI RAM
    80. JAY SHRI RAM
    81. JAY SHRI RAM
    82. JAY SHRI RAM
    83. JAY SHRI RAM
    84. JAY SHRI RAM
    85. JAY SHRI RAM
    86. JAY SHRI RAM
    87. JAY SHRI RAM
    88. JAY SHRI RAM
    89. JAY SHRI RAM
    90. JAY SHRI RAM
    91. JAY SHRI RAM
    92. JAY SHRI RAM
    93. JAY SHRI RAM
    94. JAY SHRI RAM
    95. JAY SHRI RAM
    96. JAY SHRI RAM
    97. JAY SHRI RAM
    98. JAY SHRI RAM
    99. JAY SHRI RAM
    100. JAY SHRI RAM
    101. JAY SHRI RAM
    102. JAY SHRI RAM
    103. JAY SHRI RAM
    104. JAY SHRI RAM
    105. JAY SHRI RAM
    106. JAY SHRI RAM
    107. JAY SHRI RAM
    108. JAY SHRI RAM

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

    Thank you sir for your efforts 💗

  • @CHANDRAPRAKASH-fr6cj
    @CHANDRAPRAKASH-fr6cj Год назад +7

    You understand the feelings of the student. Thank you so much sir 💖💖💯💯

  • @Maturetalks1
    @Maturetalks1 Месяц назад +2

    Awesome ❤❤

  • @2.o984
    @2.o984 Месяц назад +2

    Thank u sir
    Maza aye

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

    Generalized Code For Printing Reverse Of A Number :
    lastdigit = number % 10 ;
    reverse = (reverse *10) + lastdigit ;
    n= n/10 ;

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

      In this code we do not print reverse of 2000 we get 2 as answer or any number which last with zero will not work in this code. Write code for every number not for specific number.

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

    I AM OF CLASS 10 BUT ALSO I CAN UNDERSTAND THIS PROGRAMING VIDEO RESPECT TO SIR 😍😁

    • @KeshavSingh-mf7ps
      @KeshavSingh-mf7ps Год назад

      Bro plss focus on your studies first😢 then jump on side courses or you will end fuc.ed up your brain.. or else your choice

  • @SakshiVerma-qn5lb
    @SakshiVerma-qn5lb 5 месяцев назад +42

    anyone is from sem one😮😢😢😊😊🤗

  • @MadanMishra-s8l
    @MadanMishra-s8l Месяц назад +1

    hello sir you teaching is very good

  • @DeepakVishvakarma-lk1nv
    @DeepakVishvakarma-lk1nv Месяц назад

    MAJA AA SIR 😇 YOU MAKE ALL CONCEPTS VERY EASY👍 THANK YOU SIR🙏

  • @kavishlad3048
    @kavishlad3048 11 месяцев назад +52

    2024 batch attendance here....❤

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

    Sir web development course when? Eaglerly waiting for it

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

    2:40:16 sir my code is
    Int main() {
    Int n;
    Printf("enter a number:");
    Scanf("%d",&n);
    Int a;
    Int sum=0;
    While (n!=0) {
    a = n%10;
    If (a%2==0) {
    Sum = sum + a;
    Else {sum = sum ; }
    n=n/10;
    }
    Printf("the sum of even digits is %d", sum)
    return 0;
    }

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

    Sab samajh me aa gya ab mai pattern printing karunga