Hello teacher Jenny, I am your student from Kenya,you have made learning C programming language so interesting and understandable for me. Thank you so much for your unending efforts to freely make such educative videos. May your bucket of knowledge never lack.
At 12:01,The while loop will print 0 to 10,Since we did not initialize the value of i, it takes i=0 and then the loop will get terminated then the "End of the program" will be printed.
At 11:31 If didn't give i value it will going in infinite loop and printing interger range when ans is -1 that time loop break and coming outside the loop.
Hi, my name is Wasim Ahmed and I am from Islamabad, Pakistan . Ma'am, you are really impressive. I see all your DSA lectures which are really helpful for me in exams. I wanna to thank you.
I am from lahore ,Pakistan. Ma'am really teaches in a very simple and easy way.I have yet to get admission in university. So i am here to learn things in advance.
You are the best!! I am from IIT BHU but i never focussed on proffs while they were teaching. (you know it right). Now i got an intern in a reputed company and will get placed next year. Thank you for ur courses especially DSA. Love you and a gift i have in my mind and give you if i ever get a chance. Thanks again!! ♥
Ma'am your data structures playlist helped me a lot... Now, I have planned to go further and learn DAA(design and analysis of algorithms). Please make a playlist on DAA. Your way of writing code and teaching it is so good. Literally, I have tried to learn DAA from other playlists which are available on TH-cam but it didn't help me that much. Please try to make videos on DAA. It will help me a lot🙏
When we don't initialise the variable..in for loop then at start of loop it is by default considered as zero in the sense it is by default initialised with zero when we don't initialise...
thank you so much mam for providing free c list this list is very helpful for me and as well all user who want to learn programmer i think that seeing your whole playlist of c i will make a good programmer thank you so much mam god bless you and complete your whole wishes
Mam ye infinity compiler k range par depend karta he. The range you have written is not same for all of the compilers. For example the range of the code blocks's compiler is bigger than the range u have written.
Ma'am , in while loop when we do increament (pre or post ) it goes to infinite loop ! It doesn't print till 0 or -1 as you have told in the video. Why ?
#include int main() { int i=1; while (i) { printf("%d ",i); ++i; }
return 0; } maam apne video me bola tha k ye infinite loop nhi he aur ye -1 tk aake end ho jyga , lkin mere vs code me toh ye loop infinite tak chala; pls doubt clear kr dijiye maam and thank you maam for such videos
6:42 when i run this program in output its printing 10 11 12 13 and its going till infinite..when it goes till 42000 my computer started heating and fan noise became loud so i immediately stopped the output screen... but mam u told that it will only print till 37000
Hello teacher Jenny, I am your student from Kenya,you have made learning C programming language so interesting and understandable for me. Thank you so much for your unending efforts to freely make such educative videos. May your bucket of knowledge never lack.
Hello bro
From India ❤️🇰🇪🇮🇳
I am from Kenya too 🙂, sema bro 😂
Nko hapa pia saseni watoto wa zakyo 😂
Vhfhhh
@@Denbl-du7mr watu wasome vizuri , tunaelekea enzi za AI
At 12:01,The while loop will print 0 to 10,Since we did not initialize the value of i, it takes i=0 and then the loop will get terminated then the "End of the program" will be printed.
The output which u mentioned happens only for "for loop"..not for while
@@supradeepthavuta1028 Try it on you computer and see for yourself. It works for both.
the value of i depend on compiler,
It's give same output but i don't understand how? Int datatype 0 is not the smallest int. What about -ve numbers?
At 11:31 If didn't give i value it will going in infinite loop and printing interger range when ans is -1 that time loop break and coming outside the loop.
Hi, my name is Wasim Ahmed and I am from Islamabad, Pakistan
.
Ma'am, you are really impressive. I see all your DSA lectures which are really helpful for me in exams. I wanna to thank you.
Hello from India. 🎊
@@AvishekPaulOnline Hello
Hello from India
I am from lahore ,Pakistan. Ma'am really teaches in a very simple and easy way.I have yet to get admission in university. So i am here to learn things in advance.
Iam waiting exam on c this semester and you are my reference❤
My teacher has global eyes. I am here from the Arab lands. Thank you so much.
You are the best!!
I am from IIT BHU but i never focussed on proffs while they were teaching. (you know it right).
Now i got an intern in a reputed company and will get placed next year.
Thank you for ur courses especially DSA.
Love you and a gift i have in my mind and give you if i ever get a chance.
Thanks again!! ♥
Vro iit me teaching kaise hoti hai. Plzz reply yrr🥺
@@RahulBisht_001 Kuch khas nahi baki college ki hi taraf bas prof slides reading marte ha🙃
Bro are u on telegram if yes do tell me so that I can ask u my cs related query
Mam you are all programs explain in a very very simple language
Soo it is very simple to study for me.
Thank you ...
mam
14:47 it will print 0 and then end of program
I think it should print 1 and then end of program .... Because we are using pre increament
Please explain why it will print 0
Starts at 3:04
at 14:23, it is not gonna stop i checked it
but anyway I understand this lesson deeply thank u)I
11:48 No output
Thanks a Lot Mam
At 13:13 Output will be nothing when we use semicolon after while
At 14:49
Output - 0
End of program
how do u get 0 and End of program, I am running it in code blocks but not getting any output?
11:45 gives an error on IDE
14:44 gives 0 and end
16:55 when you use %c gives the characters
14:47 it will print "end of program"
No
at 14:47
#include
#include
void main()
{
int i=0;
while(++i);
{
printf("%d
",i);
}
printf("end of program");
getch();
}
it gives
0
end of program
It's wrong .
Answer is 1
@@elavarasan_r154 program run kar ke copy paste kiya hu bhai . Answer 0 aa raha hai
i=1 bro because ++i
So answer is 1 and end of the program
See that logic bro
If there is increment or decremnt will it be. A loop
Thank you for data structures helped me alot. Keep rocking
At 11:46 Ans is correct Loop didn't work control directly going out side the loop and printing outside the loop.
Yes
Ma'am your data structures playlist helped me a lot... Now, I have planned to go further and learn DAA(design and analysis of algorithms). Please make a playlist on DAA. Your way of writing code and teaching it is so good. Literally, I have tried to learn DAA from other playlists which are available on TH-cam but it didn't help me that much. Please try to make videos on DAA. It will help me a lot🙏
Buddy can u Plz help me in numerical related to c++ if u are done with it ?
11:50 when i is not initialised and condition is given, and increment is there, then the output will be 0-10
@11:53 it prints 0-10 and the end sentence
Good evening mam,
As u are explaining c, please explain java and other programming languages also, mam.
Your explanation is awesome.
Mam, when we didn't initialize any value to i, it'll take as default value 0.so it'll print from 0 till 10.
And after printing 0-10 it will print "End of Program"
but I am not getting this type of output bro, my o/p is only end of the program
@@De-CODE7 how did you get that output bro,i have also getting the above o/p...
If you get what mam says ,plz text it on comment box broo....
Is it also machine dependent? To know that, plz say which IDE u r using
When we don't initialise the variable..in for loop then at start of loop it is by default considered as zero in the sense it is by default initialised with zero when we don't initialise...
Hi
I am a big fan of your explanation mam❤️❤️❤️
Jenny really your way is shortcut easily understood, please share me Java playlist
Mam I ❤️ your way of teaching please do playlist on machine learning & artificial intelligence mam please mam
Mam you are great👻 thanks for making study easy for us
the programm at 17:50 give infinite integer
You'r too much hard worker. You work a lot for us
Ma'am if possible please give the notes and questions related to our semester
thank you so much mam for providing free c list this list is very helpful for me and as well all user who want to learn programmer i think that seeing your whole playlist of c i will make a good programmer
thank you so much mam god bless you and complete your whole wishes
Mam ye infinity compiler k range par depend karta he. The range you have written is not same for all of the compilers. For example the range of the code blocks's compiler is bigger than the range u have written.
Once I saw u a year ago, through out past year u hv got a lots of change,
especially ur pitch of voice..
printf("%c",ch);
This will print from a to z and all other characters
now, tommorow's exam will suffer in my hands. thanks Jenny
If you place a semi-colon on the while, it will only print the statements out of the loop
14:49 ans is end of program
17:00- output in symbols
Thank you mama for the efforts you put in to make us understand 🥰
First view🤩 I am soo lucky to watch ur videos mam
Fabbbb you are a life Savior of students like mee
Expecting a heart from u maam. ❤
U,r too good I like u,r way of teaching...
output of code when condition is i
Hello ma'am , 11:08 you are saying about increment , but in while syntax no iteration
I am just confused 😞😔
thank you mam🌹🌹🌹🌹🌹🌹🌹🌹this is for your teaching
#include
int main() {
int number, i, product;
printf("Enter the number
");
scanf("%d", &number);
while(i
Man aap bhaut accha padhti h bhaut hi badiya
13:59
Madam, I am getting an infinite loop!!🙄
How is it possible?
Intialising of i is written two times in the program i.e., int i = 1 and i = 1.
It will throw an error.
Mam plz start arrays !!!!!!my exam are coming soon 🥺🥺🥺
Same Here
Truly agreed !!!
look in the play list she has already posted arrays
I have one doubt int a; is declaration or definition
@@pavankalyan2970 declaration
Mam can you please make a separate video on finding the second largest element in an array
i think you should mention short infront of int because short int is 16 bit and it matches with range that you told in the video
Best explanation mam. you are great.
##3:04 save your time
Best video
#TechBlooded🔥
Thank you mam...
Can you make lecture series on JAVA language
Mam you are intelligent mam
mam, when we don't initialize then by default it takes i=0 and gives an output from 0-10.
that is same as brother
When the condition for the while loop is ( i
no bro the output is End of the program
@@MAHESH-rf2uyyes ofcourse
Ma'am , in while loop when we do increament (pre or post ) it goes to infinite loop ! It doesn't print till 0 or -1 as you have told in the video.
Why ?
Yes bro same doubt
A fan from UK
#include
int main()
{
int i=1;
while (i)
{
printf("%d
",i);
++i;
}
return 0;
}
maam apne video me bola tha k ye infinite loop nhi he aur ye -1 tk aake end ho jyga , lkin mere vs code me toh ye loop infinite tak chala; pls doubt clear kr dijiye maam
and thank you maam for such videos
mam, why am i getting an infinite value for this program ? 10:24
And mam please do teach how to build logic in Loops (Patterns)
Thank-you ma'am
Hey how can I seen my query related to c progamming as mam doesn’t reply u can solve my numerical issue in c and c++?
I am implementing all the knowledge from this video on c++ .is it right?
Thanks a lot mam 🔥🔥🔥
14:40 mam the output will be 0
10:08 nice mam
At 11:57 it won't show any output bcoz it doesn't know from where to start ... I dried runned it and I also runned it in turbo c++
yes u are right I had runned it in VS code
Hello mam i think ... Int having between the range of -127to128
🤔🤔🤔🤔
Awesome voice my Dear c teacher
Thanks mam❤😊
if i run the program given at timelapse 11:46 it gives
0
1
2
3
4
5
6
7
8
9
10
end of program
11:45 output will be
0
1
2
3
4
5
6
7
8
9
10
end of program
12:01 in my C program that I am using in mobile phone it take for garbage value as zero every time
Thank you jayanti ma'am
11:48 it prints 0 1 2 3 4 5 6 7 8 9 10 End of Program , mam
No,it prints : End of program
8:18 why zero is false
3:06 a semicolon must be placed to printf
12:00 i guess it will print garbage value of i, it does in my compiler
Your teching so good
at 11:54 the output is
0
1
2
3
4
5
6
7
8
9
10
end of program
no I had run the program , so output is : end of program
thank you maam
11:48
#include
int main() {
int i;
while(i
At 11:48, u didn't increment the value of i......so,it will repeat the values for infinite times....
At 12:02 I got output "End of the program" but how??? what 'i' value becomes mam...is it skip the while loop?? please clarify me mam...🙄🙄
Hello mam please make video in c++
mam,please tell what happens when we put semi column after while loop ?
16:52 mam the output will be abcdefghijklmnopqrstuvwxyz{|}~.... and so on till a finite limit ASCII code is reached
You are the best mammm
6:42 when i run this program in output its printing 10 11 12 13 and its going till infinite..when it goes till 42000 my computer started heating and fan noise became loud so i immediately stopped the output screen... but mam u told that it will only print till 37000
😱😱
Nice teaching mam
Adding this ; the output will give (End of program)
Superb Video mem..Thank you
Thankyou mam ,it is very useful
Mam for "char" program output shows capital alphabet and small alphabets and symbols .
It doesn't show any 97, 98 values can you please explain
If we write ; after While (i++) , the loop will be terminated and the control will go out of loop and show the End of program
Nhi bhai esa nhi ho rha