Video není dostupné.
Omlouváme se.

C_35 Properties of For loop in C | C Programming Tutorials

Sdílet
Vložit
  • čas přidán 15. 01. 2021
  • In this lecture we will discuss some properties of for loop in C.
    C Programming Playlist: • Programming in C
    Connect & Contact Me:
    Jenny's Lecture Hindi: / @jennyslectureshindi
    Facebook: / jennys-lectures-csit-n...
    Quora: www.quora.com/...
    Instagram: / jayantikhatrilamba
    Twitter: / khatrijenny
    More Playlists:
    C++ Tutorials for beginners: • Lec 1: How to Install ...
    Best Python Tutorials for Beginners: • Python - Basic to Advance
    Printing Pattern in C: • Printing Pattern Progr...
    Placement Series: • Placements Series
    Data Structures and Algorithms: https: • Data Structures and Al...
    Design and Analysis of Algorithms(DAA): • Design and Analysis of...
    Dynamic Programming: • Dynamic Programming
    Operating Systems tutorials: // • Operating Systems
    DBMS Tutorials: • DBMS (Database Managem...
    #forloop #loop #cprogramming #coding #jennyslectures

Komentáře • 650

  • @Maha_s1999
    @Maha_s1999 Před rokem +23

    This must be the mother of all lectures on for loops in C. Thank you so much for going through the detail and possible cases!!!

  • @ruthtef4227
    @ruthtef4227 Před 3 lety +43

    I am so happy to come across your CZcams channel. It is very helpful. you are very incredible. The way you express everything in detail and pointing out all the possibilities are fantastic. and please also keep using English in all your videos. You make all the abstract idea concrete. Thank you so much. keep up the good work.

  • @18fatima15
    @18fatima15 Před 4 měsíci +7

    4:55 ma'am said that if we don't initialize anywhere, we'll get no o/p. But I got an o/p when I ran the program.
    #include
    #include
    int main()
    {
    int i;
    for(;i

    • @ShubhamKumar-tf7qi
      @ShubhamKumar-tf7qi Před měsícem

      yeah! same doubt in first one 4:55
      did you get the reason by now

    • @zomatofather5026
      @zomatofather5026 Před 25 dny

      @@ShubhamKumar-tf7qi you got output because you added inc dec and variable default value is 0
      then 0+1=1
      1+1=2
      thats why you got output 01234
      my english is not much better

    • @cortexop7347
      @cortexop7347 Před 9 dny +1

      same
      int main()
      {
      int i,j;
      for(i=1,j=0;i==10;i++,j++)
      printf("%d %d
      ",i,j);
      return 0;
      getch();
      }
      output
      (blank screen, nothing is printed) // I didn't understand the logic here
      mere hisaab se output hona chayie the :
      10
      21
      32
      43
      54
      65
      76
      87
      98
      109

    • @monsmo9435
      @monsmo9435 Před 5 dny

      @@cortexop7347 starting se hi condition true nahi hogi to loop execute hi nhi hoga

  • @SN-edits4u
    @SN-edits4u Před rokem +22

    15:48 there'll be no output as condition will be false, since we initialised i=1 and condition is i==10, so it will come out of the loop with even single iteration.

  • @sabyasputnik_2004
    @sabyasputnik_2004 Před rokem +23

    In 23:44 there is a mistake as we intialize the counter(i) with value 1 and in the place of condition put i

  • @gamingislove8120
    @gamingislove8120 Před 3 lety +28

    I have passed Data structure paper by just watching ur vedios thanks mam😎

  • @ourculture7079
    @ourculture7079 Před rokem +10

    int i;
    for( ;i

  • @pritampandit6297
    @pritampandit6297 Před rokem +29

    Feeling good to have a teacher like you mam...thank you for hard work for us....
    After having your lecture performed it myself...
    for(i=1,j=0;i

    • @vinaygupta8532
      @vinaygupta8532 Před rokem +3

      Bhai dusre Wale ka 103212 hoga

    • @coding_with_bf
      @coding_with_bf Před rokem +5

      I don't understand that how it returns 321.
      I think it will be return 212 becoz k>1 but after running it ,it returns 321 plz tell me

    • @sarathsarabrozz6593
      @sarathsarabrozz6593 Před rokem +3

      @@coding_with_bf bro loop will end at 321 so its printed (because of that termination ' ; ')

    • @vaibhavzine3888
      @vaibhavzine3888 Před rokem

      @@coding_with_bf i think u incremented k++ use there k- - because k>1

    • @ebube.
      @ebube. Před rokem

      @@vinaygupta8532 you didn't put the ";" at the end of the "for" statement, so the loop ran normally and gave the result you had

  • @kameshpatil4231
    @kameshpatil4231 Před rokem +14

    23:35
    it will print jenny for infinite times not only for 4 times since no modification is made through expression 3

  • @eduamar9234
    @eduamar9234 Před rokem +7

    output for 28:28 will be 321 because k>1 will be the termination expression and accordingly loop will be executed ..value used initially for i,j,k would (1,0,3) hence k condition will be executed nd i , j value would be incremeneted up to k>1 so the the finalise value for tht would be i =3, j =2, k =1

    • @sukanyamandal2828
      @sukanyamandal2828 Před rokem +2

      But here k>1 not k>=1 so it will consider upto the value k=2
      So the ans is 2 1 2.
      Can you tell me , Please?

    • @pmdinnesh1283
      @pmdinnesh1283 Před rokem +1

      @@sukanyamandal2828 1 is not greater than 1 right that's why 3 2 1 would be printed

    • @bharathgoudandhyala7429
      @bharathgoudandhyala7429 Před 9 měsíci

      103
      212

  • @ShubhamSingh-cd1jf
    @ShubhamSingh-cd1jf Před 3 lety +10

    Thanku Mam For Data Structures Playlist . I learned basics from the starting videos of that playlist . Now I only see the title of the video and make the whole program by myself . And also all program made by me worked fine .
    Thanku Mam for all your efforts .

    • @vaibhavbatra701
      @vaibhavbatra701 Před 3 lety

      Bro can you help me i have a doubt.......i am learning c now..... which i have to learn first c++ or dsa after completing C????

    • @shaikeliyasbasha2822
      @shaikeliyasbasha2822 Před 3 lety +1

      @@vaibhavbatra701 uu should have to learn first 'c' later it is advanced uu can learn c+++

    • @vaibhavbatra701
      @vaibhavbatra701 Před 3 lety

      Thank you shaik

    • @rittikkumardas9755
      @rittikkumardas9755 Před 2 lety +2

      @23.59 you did a mistake. You were not updating I but you said pf Jenny will be executed 5 times only .I believe it will be infinite loop . 😶

    • @farzanaashraf8136
      @farzanaashraf8136 Před 2 lety

      MashaAllah

  • @debadritadebnath3225
    @debadritadebnath3225 Před 3 lety +15

    Thank you so much for this video ma'am. My all doubts regarding for loop got cleared. There's a request from my end ma'am. Actually in C Programming I don't know pointer and structure very well. If you make such informative video on these topics like this video, it will be really helpful ma'am. I'm genuinely following your C Programming course and eagerly waiting for upcoming stuffs and specially pointer and structure.

  • @redrose5950
    @redrose5950 Před 3 lety +28

    Extremely significant lecture, thanks alot for your efforts. You are a wonderful teacher.

  • @codeforces8729
    @codeforces8729 Před 2 lety +55

    If we don't initialize at for loop it will not give no output,it will give 0 to 5 when (;i

    • @hombdr.pathakkshetri8893
      @hombdr.pathakkshetri8893 Před 2 lety +4

      yes initialization started automatically from 0

    • @kunalboxer4432
      @kunalboxer4432 Před 2 lety +4

      No it will initiate with garbage value but still code will run

    • @abhishekrajput8392
      @abhishekrajput8392 Před rokem +1

      Yes it will give 0 to 5

    • @asimbagwan9896
      @asimbagwan9896 Před rokem +1

      Thanks .your syntax work in turbo c++ .

    • @Cubeone11
      @Cubeone11 Před rokem

      @@asimbagwan9896 turboc++ is shit, don't use it. instead you can use online compilers like programiz

  • @kameshpatil4231
    @kameshpatil4231 Před rokem +14

    27:21
    output= 1 7
    28:28
    output = 3 2 1

  • @maryannemuthoni5388
    @maryannemuthoni5388 Před 9 měsíci +3

    Thank you so much, i have understood for loops better thanks to you. I tried some of the things you told us to:
    For the first question in 6:55 int i will not be initialized so loop will not activate and there will be an error.
    For 9:38 it will give an error since i is not initialized.
    For 15:38, i==10 will give no output since condition is false from the beginning, it will go out of body of loop
    For 12:30 I tried the i

  • @satyajeetjadhav4932
    @satyajeetjadhav4932 Před 2 lety +10

    if we dont initialize i in for loop as well as in the declaration section we get the output but it starts from 0

  • @fatimaahmad5734
    @fatimaahmad5734 Před 2 lety +6

    I am learning c++ but i always watch your videos. It helps me clear my concepts.

  • @shahdarshil1227
    @shahdarshil1227 Před 2 lety +8

    Mam u are just awesome 😊 I learn c very easily from your videos, thnx for making such a informative and easy to understand lectures. Thank you!!❤️

  • @alarezomoosamuyi8526
    @alarezomoosamuyi8526 Před 9 měsíci +1

    In 27:25, the forloop
    for (i = 1, j = 0; i < 5, j

    • @howler-zu8xr
      @howler-zu8xr Před 8 měsíci

      I am also using gcc compiler but no error in my case..
      Output - i=1 j=7

    • @alarezomoosamuyi8526
      @alarezomoosamuyi8526 Před 8 měsíci

      @@howler-zu8xr okay, I'll retry it..

  • @pavankalyandandavathkar9568

    Thank you so much madam😊, you cleared all my doubts regarding to the for loop

  • @harisarain5568
    @harisarain5568 Před 9 měsíci +1

    big respect and big love from pakistan islamabad i an curently styding in the prestigeous uni of pakistan which kniwn as the top uni of pakistan FAST (NUCES) , but no such teacher really big love from pakistan

  • @aryanraj1416
    @aryanraj1416 Před 3 lety +11

    23:54 output infinite loop but you told print four times?

  • @sankalpphadke4938
    @sankalpphadke4938 Před 3 lety +16

    28:20
    int i, j, k;
    for(i=1, j=0, k=3;i1 becomes false, so loop ends.
    i=3 j=2 k=1

  • @tapaswineebehera5061
    @tapaswineebehera5061 Před 3 lety +23

    Output of last question will be:
    103
    212
    Bcoz K>1 is the termination condition

  • @VectorClasses01
    @VectorClasses01 Před 2 lety +7

    Dear mam, So thankful for your efforts for us,
    Mam actually @14:16when I am executing the code then the output is 4,3
    But according to the given condition the answer must be different, Can you please clarify it..

  • @simbarasheblessed3872
    @simbarasheblessed3872 Před 2 lety +24

    your lectures are well put together, keep up the good work

  • @EhabSmH0
    @EhabSmH0 Před rokem +2

    7:10 when setting i with no value and loop starts till 5 it acts as i value is 0
    int i;
    for( ; i

  • @hariparuchuru3858
    @hariparuchuru3858 Před 2 lety +4

    when we enter the condition as i == 10 then the compiler will not enter into loop and will reach the end of the program
    with out printing any value

    • @reusgemi297
      @reusgemi297 Před 2 lety

      In fact == is a equal to relational operator and if any of the condition get failed it will simply terminate from the for loop

  • @uppeyvaishnavi9157
    @uppeyvaishnavi9157 Před 2 lety +6

    At 23:53 a small correction for loop will run infinite

  • @subhadeepbosexi-a-0750
    @subhadeepbosexi-a-0750 Před 4 měsíci +2

    I'm still confused why we are using console input output. Means when we need to use the console input output statement.

    • @gorlashirisha6590
      @gorlashirisha6590 Před 4 měsíci

      When we use the getch () and clrscr () functions we need to use the console input output

  • @IamengineerZA
    @IamengineerZA Před rokem +6

    A very amazing season mam
    I search this topic on u tube but your video are awesome
    All concept clear thanks mam👍👍👍👍👍👍👍👍👍👍❤️❤️❤️❤️❤️❤️

  • @isaac-victorshonowo1838
    @isaac-victorshonowo1838 Před 10 měsíci +3

    @27:42 Answer is 17.
    @28:28 Answer is I think it should print 321 (I have a feeling I'm so wrong though).
    Watched and Understood ❤

  • @shruthi873
    @shruthi873 Před 3 lety +8

    please reply for correct answers mam...it will be useful for others to check nah?😀

  • @jayarogan7100
    @jayarogan7100 Před rokem +2

    Mam you are teaching very easy to understand to me thank you mam

  • @loveyourself....4200
    @loveyourself....4200 Před 2 lety +4

    u just cleared my doubts in only minutes...😁thank u for yourrr efforts

  • @harinidurairaj4195
    @harinidurairaj4195 Před 6 měsíci +1

    We are very lucky to learn from you mam❤. Thank you so much.

  • @world.of.october
    @world.of.october Před 3 lety +11

    Hello ma'am !! Please come up with videos for competitive programming or just simple programming with focussing more on problem-solving rather than the language! :) Thanks in advance

  • @brihaspatibhattarai5756
    @brihaspatibhattarai5756 Před 3 lety +6

    First time I'm commenting something.. You saved me, thank you maam

  • @Mindmentorrr
    @Mindmentorrr Před rokem +1

    28:20 the out put is 103 an 212 then it terminate because terminate condition is k>1

  • @sankalpphadke4938
    @sankalpphadke4938 Před 3 lety +10

    27:10
    int i, j;
    for(i=1, j=0 ; i

    • @the_desire2176
      @the_desire2176 Před 3 lety +1

      How does i will be print till 7... condition of i will false at 5 ... because i

    • @sankalpphadke4938
      @sankalpphadke4938 Před 3 lety

      @@the_desire2176 for loop has two conditions until both conditions become false for loop will execute, also i++ is in body of for loop so it will execute even when condition for i is false.

    • @the_desire2176
      @the_desire2176 Před 3 lety

      @@sankalpphadke4938 ok.. thanks di..I have started pursuing c language from basic that's why I was confused..

    • @jackskarthik2
      @jackskarthik2 Před 3 lety

      @@the_desire2176 last condition is considred for termination the loop that is ...j

  • @ShahidAnsari-bf7qt
    @ShahidAnsari-bf7qt Před 3 lety +5

    Even at 23:50 jenny will be printed in finitely times because here we are not incremented or given any third expression so 1will always be less then 5

  • @rsugil8459
    @rsugil8459 Před 2 lety +3

    Tomorrow is my presentation on loop.
    Thanks a lot mam ✨.

  • @angelmeee6696
    @angelmeee6696 Před 3 lety +4

    Mam, please tell me when you put semicolon at the end of for loop, in the example you have mentioned, how it comes to be till 8 & 7 . Please try to explain this
    Love from kashmir ❤

    • @LaFreMD
      @LaFreMD Před 3 lety +1

      When you put a semicolon at the end of a loop then the statements following the loop are not considered to be inside the loop they are treated as any other statement in the program like input or output statement.
      When we have to include some statements inside the loop for executing multiple times we use braces '{}' but if we use a semicolon at end of the loop the statement we write in the braces after the loop are not considered to be a part of a loop but yet they will be executed (only once).

  • @junnatulferdouseprome9180

    int i=1,j=0,k;

    for(i=1,j=0,k=3;i

  • @crickyfire5621
    @crickyfire5621 Před 3 lety +3

    For Last question output is
    103
    212

  • @emiliarose1980
    @emiliarose1980 Před 26 dny +1

    Big thanks to you maam for all the amazing lectures and the hardworking that you're putting in your videos 1🫡🫡🫡

  • @vinaysharma1858
    @vinaysharma1858 Před 2 lety +7

    6:59 I think it’s a mistake from your side. But we indeed get an output. 0,1,2,3,4,5

    • @margin100px
      @margin100px Před 2 lety +3

      Yeah because control automatically cosnsider 0 as a initial value as integer

    • @jahnavimaredla3893
      @jahnavimaredla3893 Před 2 lety +2

      No there was no output for me

    • @ShyamSundar-xd4lb
      @ShyamSundar-xd4lb Před 2 lety

      @@jahnavimaredla3893 may be u did mistake somewhere. Output should be 012345

  • @Madmaxkkb
    @Madmaxkkb Před 2 lety +6

    Thank you ma'am all doubts cleared ❤️

  • @reusgemi297
    @reusgemi297 Před 2 lety +5

    27:38 the value of i is 1 and j is 7

    • @dhananjaysinghrathore3325
      @dhananjaysinghrathore3325 Před 2 lety

      It will print 1 7, but the value of i will be 2 now, after the increment post the print statement.

  • @udaysinghrana5725
    @udaysinghrana5725 Před rokem

    23:55 - Mam, in the given below program. you are saying that program will run only 4 times but there is no increment value which will result in infinite loop. For confirmation, i ran the program.
    #include
    int main()
    {
    printf("Hello World");
    int i=1;
    for(;i

  • @aryanraj1416
    @aryanraj1416 Před 3 lety +2

    7:05 if we don't assign any value for " i," compiler will assign 0 automatically, so the output starts with 0...

    • @aryanraj1416
      @aryanraj1416 Před 3 lety

      15:47 nothing print

    • @koppulasupriya2480
      @koppulasupriya2480 Před 3 lety

      It is compiler dependent sometimes it is assigned to 0 or with garbage value by default

  • @sulurulokesh7877
    @sulurulokesh7877 Před 4 měsíci

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

  • @bharatb.s
    @bharatb.s Před 2 lety +2

    i have done really well with the help of u !! thank you maam

  • @karthikraj4953
    @karthikraj4953 Před 3 lety +12

    for 6:59 , if we don't assign value for i, it will assign 0 automatically, so the output starts with 0.

    • @ayushjain7764
      @ayushjain7764 Před 3 lety +8

      How you can say that i =0 ,because in i its garbage value not 0 which would assigned because for auto staorgae class deafault value is garbage value not 0.

    • @anubhav1020
      @anubhav1020 Před 3 lety +16

      @@ayushjain7764 Its particularly for a 'for loop' if variable not initialised then it is considered by default zero by compiler. And in rest of cases if u print 'i' any garbage value would be printed

    • @karthikeya.inumula8649
      @karthikeya.inumula8649 Před rokem

      Yeah , if we dont installize 'i' it takes " i=0 " , and if we dont installise both " i, j " it takes "i =0, j=1 " and after 3 variables it takes garbage value

  • @irjbobby
    @irjbobby Před rokem +3

    wow, never thought there could be so many variations for writing for loop.

  • @hustlewithnik
    @hustlewithnik Před 2 lety +3

    At 9.40, it will not give any value coz we are not initializing "i".

  • @asu253941simi
    @asu253941simi Před měsícem

    You are so good.. Thank you

  • @ashwaniverma5512
    @ashwaniverma5512 Před 3 lety +4

    Your voice and content is very good 👍❤️❤️

  • @tejeswar5925
    @tejeswar5925 Před 2 lety +1

    Mam even if we don't initialize i at any part of the program, its default value is going to be 0.
    But u told it won't run the program. But its giving the output as 0 1 2 3 4 5 .
    Please verify and justify the correct answer mam.

    • @rushiiii4934
      @rushiiii4934 Před rokem

      Yesss brroooo ur right samee problem mam please explain what is the correct answer 🙄

    • @rushiiii4934
      @rushiiii4934 Před rokem

      Because here we use i think increment operator so i value automatically increament at end of 5

  • @BeautyofLanguage
    @BeautyofLanguage Před 2 lety +7

    10:38 When no termination expression is given then the output goes till infinity.

  • @BeautyofLanguage
    @BeautyofLanguage Před 2 lety +5

    15:47 The output will be the same, that is 1 0, 2 1, 3 2. because the second condition will be considered by the control, which will be terminated as soon as it will reach till the second value 2.

  • @sulurulokesh7877
    @sulurulokesh7877 Před 4 měsíci

    In C, the behavior of uninitialized variables is undefined. That means the value of i in your code is indeterminate. It could contain any random value from whatever was stored in memory at that location before.

  • @rushiiii4934
    @rushiiii4934 Před rokem +1

    27:17 it's output is 1,7

  • @rushipatil2406
    @rushipatil2406 Před 2 lety +1

    Mam u great my all concept of loops easy to solve this vedio....👍🤞

  • @isaacl.quelemine8775
    @isaacl.quelemine8775 Před rokem +1

    In the 2nd assignment you did't declear i,j and k so we have syntax error but if we declear it our output will be: i = 3, j = 2, k = 1

  • @elavarasan_r154
    @elavarasan_r154 Před 3 lety +9

    28:26
    The output is
    321

  • @ashisharyan9150
    @ashisharyan9150 Před rokem +1

    Respected mam it will give output with i=o

  • @chigsthanky
    @chigsthanky Před rokem

    Thank you so much mam for these videos. It really clears our concepts and fundamentals. No one teaches like you with this much depth.

  • @venup5381
    @venup5381 Před 2 lety +1

    if we noit declare i either in local declaration or in for loop,
    then it is automatically taking i as 0.
    but it is not giving output as no output or something else
    as you told 6:36

  • @parthshroff7357
    @parthshroff7357 Před 10 měsíci +1

    9:35 mam no output will be displayed

  • @mayurjogalpure2868
    @mayurjogalpure2868 Před 2 lety +5

    06:25 ---It will give the following output rather than no output.
    /*WAP to print numbers by allotting a maximum number using for loop*/
    #include
    #include
    void main() {
    int i;
    for( ;i

    • @googleagent
      @googleagent Před 2 lety +1

      have you actually wrote these syntax and run it properly ? in my case its not giving any out put

    • @mayurjogalpure2868
      @mayurjogalpure2868 Před 2 lety

      @@googleagent Absolutely yes! I have written and run the program and this is what I got the output. Can you please run it once and get back to me?

    • @googleagent
      @googleagent Před 2 lety

      @@mayurjogalpure2868 yeah I did actually and my output differ from you , I am getting no output , output is blank and I wrote the exact syntax as mentioned .

    • @mayurjogalpure2868
      @mayurjogalpure2868 Před 2 lety

      @@googleagent This is strange! I am getting an output. Can't comment now.

    • @tunahankarali6917
      @tunahankarali6917 Před 11 měsíci

      I'm taking output like you. ı don't know how to solve this problem

  • @ipadeolabamidele
    @ipadeolabamidele Před rokem

    God bless you beyond measures ma, I'm just seeing this and I appreciate that I saw it here first

  • @manvendra91102
    @manvendra91102 Před 3 lety +3

    Mam please make video in detail .And mam please provide notes of c language.

  • @veerabhadrarao258
    @veerabhadrarao258 Před 2 lety +1

    Tq very much all the possible varieties i have seen in this video. 🙏

  • @rohithboppana2414
    @rohithboppana2414 Před rokem +1

    I love your teaching, i was understanding well👌👍👏👏

  • @sohanpalsanjay5873
    @sohanpalsanjay5873 Před 7 měsíci +1

    Mam ess loop me hum i or j ke value print krane ke liye seprated loop le sakte hai kya??

  • @akashpraveen9814
    @akashpraveen9814 Před 3 lety +2

    Extremely good..

  • @BeautyofLanguage
    @BeautyofLanguage Před 2 lety

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

  • @gopalyadav6578
    @gopalyadav6578 Před 9 měsíci +5

    According to me Ans will be i= 1,2,3,4,5 and j=0,1,2,3,4,5 and k= 3,2,1....but in my mobile code run and ans will bhi only 321

  • @rohitthapliyal6664
    @rohitthapliyal6664 Před 2 lety +1

    Mam, i have a doubt, when you used 2 variable for initiazing program. You were not declare 'j' variable. Please solve my problem because I am confused. And it happened at 8:51 minute in this video 👆

  • @food8814
    @food8814 Před 3 lety +3

    23:50 but mam there is no increment then how i value is incremented

  • @sudhirkundurthi5150
    @sudhirkundurthi5150 Před 3 lety +4

    Output for the last question will be : 1 0 3
    212

    • @ruthrakaran
      @ruthrakaran Před 3 lety

      Use terminate symbol in for loop ;

  • @thahir1341
    @thahir1341 Před 10 dny +1

    22:20 how it'll print 4 times , because there is no updation, kindly please clarify my doubt......

  • @vrengineers2462
    @vrengineers2462 Před rokem +1

    6:56 it prints out from 0 to 4

  • @bhagyeshwadhale8101
    @bhagyeshwadhale8101 Před 2 lety +2

    Thank you so much mam... Your video is very useful for me... 🙏🙏🔥✨❤

  • @ashishkhati5090
    @ashishkhati5090 Před 2 lety +24

    23:43 Ma'am I think jenny would not be print 4 times bcuz value of i is not incrementing. 😅😅
    And thanku ma'am for all things that u are doing for us.🙏🙏🙏
    Lots of love and respect for u, and ur parents also who gave us such a hard working and dedicated teacher.❤️❤️❤️

  • @ShivPoojan.
    @ShivPoojan. Před 2 lety

    mam at 23:58 jenny will printed infinite times becoz there is no increment/decrement condition

  • @manpreetkaur-dk5mm
    @manpreetkaur-dk5mm Před 2 lety +3

    Thank you so much mam for such beautiful lecture on for loop.

  • @itsmesudheer
    @itsmesudheer Před 11 měsíci

    mam i have small doubt that i followed what you have said that not to mention initial value in both the for loop ( ; i

  • @priyanshurai441
    @priyanshurai441 Před 9 měsíci

    Mam what will be the output for that
    #include
    #include
    int main( )
    {
    int i,j=0;
    for( ; i

  • @18fatima15
    @18fatima15 Před 4 měsíci +2

    14:10 #include
    #include
    int main()
    {
    int i,j;
    for(i=1,j=0;i==10;i++,j++)
    printf("%d %d
    ",i,j);
    return 0;
    getch();
    }
    output
    (blank screen, nothing is printed) // I didn't understand the logic here

  • @rukayatmuhammed3670
    @rukayatmuhammed3670 Před rokem

    God bless the day I found your CZcams channel

  • @ummesalma6669
    @ummesalma6669 Před rokem

    23:35
    Mam it prints jenny for infinte times since there is no updation of value

  • @redrose5950
    @redrose5950 Před 3 lety +1

    You are a blessing

  • @sulurulokesh7877
    @sulurulokesh7877 Před 4 měsíci

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

  • @rajjaiswal4652
    @rajjaiswal4652 Před rokem +1

    On 23:58 jenny will printing infinite times

  • @srikanth-ki5ln
    @srikanth-ki5ln Před rokem +1

    28:26
    Output = 1 0 3
    2 1 2

  • @oisenidancan9447
    @oisenidancan9447 Před 2 lety

    you are such a blessing madam

  • @bhushansopal5336
    @bhushansopal5336 Před 3 lety +4

    9:40
    output
    00
    10
    20
    30
    40
    50