What a lecture sir. we cannot imagine these kind of lectures in Colleges
@itsgamingtime..70014 жыл бұрын
True.
@pradipmalla80595 жыл бұрын
this channel deserves much more subscribes....you guys are doing really great job ..thanks alot !
@brockolious3 жыл бұрын
The best C Programming guide and explanations I have ever seen for beginners like me. Clear, concise explanations that we can immediately use in our own C programs. To everyone studying for exams, good luck and you'll do awesome!!!
@arnhelcarbajal19422 жыл бұрын
🥃
@ItachiUchiha-mm5ov2 жыл бұрын
This seemed much easier for me for continue #include int main(){ int a; for(a=1;a
@SifenAbdi-sl6lz Жыл бұрын
its a great thing you got going on bruh.
@Salamanca-joro9 ай бұрын
What does it mean a% 2 ==0
@Sushilulu8 ай бұрын
@@Salamanca-joro it’s division operation..if we get balance of some value number..then it will pass and not getting through the continue, as it’s basically (a%2!=0)…it’s gonna be an odd number
@nitishsah10603 жыл бұрын
Sir you are taking the profession of teaching to next level such a well narrated lecture at free of cost! Thanks a lot sir
@rajeevKr074 жыл бұрын
Alternate solution using previous knowledge of while loop thank you neso academy 🙏❤ #include int main() { int i; printf("enter an integer"); scanf("%d",&i); while((i!=0)&&(i>0)) { printf("enter an integer"); scanf("%d",&i); } }
@shutdahellup694202 жыл бұрын
The odd numbers never get printed in this code tho?
@Maha_s19992 жыл бұрын
Fantastic lecture! Concise and the differences between break and continue super clear!
@noaMurcianOfficial4 жыл бұрын
I think that the second example is to complicated, i suggest this code: int main() { for (int i = 0; i < 20; i++) { if (i % 2 == 0) { continue; } printf("%d ", i); } }
@solomonadegboyega8742 жыл бұрын
Thank you for the modification
@idk8idk Жыл бұрын
He was only using this as an example I think
@tayyab.sheikh Жыл бұрын
4:55 "It simply means we won't execute the rest of the statements but we would *continue* to execute the loop"
@ergoproxy30322 жыл бұрын
so for 0:38 i quite didn't understand the necessity of using break in this exercise since i can use only while loop without if and break, it will work exactly same like this(please correct me if im wrong): #include int main() { int n; printf("enter a number;)"); scanf("%d", &n); while(n!=0&&n>0) { printf("enter a number "); scanf("%d",&n); } return 0; }
@sidzmhs Жыл бұрын
Damnnnn this video cleared all my doubts!!!!! Its so simply explained, I'm impressed !
@ziko97622 жыл бұрын
#include int main() { int a, b; printf("Enter value: "); scanf("%d", &a); for (b = 1; b
@tofiq623 жыл бұрын
This guy tells lessons better than my university teachers!
@sakshisrivastava70334 жыл бұрын
I have been always in doubt with this topic.. Thank you so much for this lecture
@yadhuss9194 жыл бұрын
I before watching this video I was confused with this topic but now I understand how easy it was
@aswithasai40153 жыл бұрын
Thank you very much from the bottom of my heart you don't know how much these lectures are helping like me beginners .
@Hustler20253 жыл бұрын
I come after watching codewithharry c language. I got doubt between break and continue but coming here is worth it.
@Codenames5604 жыл бұрын
Thanks - I wrote down your definition for 'Continue'.
@prathamgond43143 жыл бұрын
I thought that this channel was only for analog electronics.....I was surprised to see this
@kunalsoni76815 жыл бұрын
before i really confused.. but i watch this video i understand too much . thank so lot sir😙❤😍😊
@ujjwalyadav82533 жыл бұрын
I like the whole content of this channel
@shubhammoudgil44083 жыл бұрын
one word MIND BLOWING I can't even imagine that these courses are free of cost.
@taifX188 ай бұрын
I understand the difference from you in 5 minutes!! thank you so much
@r.ksharma23213 жыл бұрын
Thank you 🖤🖤🖤 so much for clearing all of my doubt easily
@moeentrimzi.85323 жыл бұрын
#include int main() { int n=2; for(int i=1;i
@Make_it-Simple8 ай бұрын
Simple & Basic 👌
@luongManh3613 жыл бұрын
This is really helpful, I get it clearly now
@abdomenebadellah3 жыл бұрын
The Helpful Acronym..thanks,sir ❤️
@joehayden60652 жыл бұрын
Very clear, pedagogically rich!
@ritikshrivastava94424 жыл бұрын
Same program without continue int main() { printf("printing the odd number from 0 to 20 "); int i=0; while(i
@purubhargava80964 жыл бұрын
u could have used simply i+=2 with i intiation as i = 1 use a for or while loop if occupy more space and reduce the execution time.
@anilakokapeta92034 жыл бұрын
I am getting successful output by writing this code for the first program:- #include void main() { int a; do{ printf("Enter any number: "); scanf("%d",&a); }while(!(a
@gatecomputerscience14843 жыл бұрын
Great explanation
@mdzaki18443 жыл бұрын
Excellent explaintion🙌🙌
@rohanjr12344 жыл бұрын
Very nice explanation 👌
@danieliniguezv3 жыл бұрын
amazing explanation! thank you so much!
@zunaedaman19302 жыл бұрын
What a lecture! My current favourite
@prakharkatwal7866 Жыл бұрын
#include int main() { printf("Odd numbers from 1 to 20 using i += 2: "); for (int i = 1; i
@arunabhachatterjee99793 жыл бұрын
we can also use this code in continue statement same output :- #include int main() { int i; for (i=1; i
@islammostafa30374 жыл бұрын
thank you, the best channel to simplify programming..
@joshua_dlima4 жыл бұрын
Damn good explanation! Thanks sir
@neniscarlet38806 жыл бұрын
Thank you, very simple and helpful. Keep up the good work!
@nazmapervin71984 жыл бұрын
Ah..now i understand it... thank u so much!!
@rockstarmani4 жыл бұрын
We can also use and (&&) operator in while loop instead using if condition again right!
@ictupdates2 жыл бұрын
Very confusing topic made simple b neso fantastic😃😃
@rakshitverma35286 жыл бұрын
you really are amazing with your job keep it up :)
@zishan534 жыл бұрын
Osm lecture It is good than other platforms Wonderful
@yehtikephyo944 жыл бұрын
You saved my life. Thanks for your lessons.
@elcactus11592 жыл бұрын
thanks alot I really got help from this vidz
@charanm17733 жыл бұрын
You are the Best
@Aabara_ka_dabara Жыл бұрын
neso academy can you make a video on int main and void main diffrence and why return 0
@GeeksPort6 жыл бұрын
Thank you... It was awesome...
@andistheinforitbutso75133 жыл бұрын
Good evening 🙏
@I_veeresh2 жыл бұрын
what i I never understand in my life ,i understand here in this particular lrecture.
@avinashkumarsingh20076 жыл бұрын
sir please keep uploading videos on C and data structures on a regular basis....
@ayushiydvKG11 ай бұрын
thankyouuu 💌
@janvi.sharma064 жыл бұрын
Very helpful 🙏👍
@swapnilbhojwani55875 жыл бұрын
#include int main() { int i; for(i=0;i
@sukritisood94435 жыл бұрын
We can also print same by using i=i+2 in expression step of for loop
@WILLGYS3 жыл бұрын
Thanks man, that helped
@amalfatyma33654 жыл бұрын
very easy method ....thankyou
@gurmxet6 жыл бұрын
thanks man!! appreciated...
@memehhme3 жыл бұрын
Great....👏🏻
@sateelbasou95822 жыл бұрын
1:00. Why haven't you written Else after writing If inside the while loop? Isn't it is mandatory to write 'Else' if there is a 'If' ?
@alejofossati2 жыл бұрын
Good tutorial over all but the example programs given are not the ones I would use... The one used for "continue" for example is convoluted. It's possible to do the same with a much simpler and intuitive method like checking if the reminder is 0 or not. IMO it would be way easier to understand if the example is a problem that actually requires the use of continue. I haven't thought of a case in which it's actually better to use continue but I'm sure there are some...
@Mohamed_sanoob6 жыл бұрын
thanku for this video neso acadamy
@mohammedanwarsha42734 жыл бұрын
Nirthi poda
@Vish_0910 Жыл бұрын
I love your voice😍
@azurehecate48822 жыл бұрын
thank you sooo much
@rajivattri206 жыл бұрын
u r d best
@penguingamingDS4285 жыл бұрын
due i liked it , i understood very easily , thx
@rao90762 жыл бұрын
Sir 9
@kavithapriyacj48684 жыл бұрын
Hatsoff 🙏👍
@shubhamshiketd42566 жыл бұрын
Love you sir
@rohitnakkina23934 жыл бұрын
simply fantastic!!
@KaifKhan-pr5rk3 жыл бұрын
no need of that other equation just modulus the number if the value is 1 then odd otherwise even , continue statement can also be used for reversing the expression of the same written
@siddhantsingh43234 жыл бұрын
Thanks a lot sir
@yoursnoorie2 жыл бұрын
I HAVE A DOUBT IN THIS PROGRAM N=N+2....SO WHY IT IS NOT IMPLIMENTING WHEN THE VALUE OF N=2 THE IT SHOULD BE 4 ...AND AFTER INCREMENTING IT SHOULD BE 5 SO WHERE THE THREE GOES
@harpreethundal98142 жыл бұрын
in my practical exam i saw a question which starts from WAP at that time i thought 🤔 it is out of syllabus and i did not tell to any
When i tried to change n value for seeing different opportunities I have noticed that something goes wrong. If I give n for 3,4 results are broke
@frsnzri7975 Жыл бұрын
so Break and Continue is going to be executed when the condition above them is True only right?
@dsa37024 жыл бұрын
Realizing in 2020, WAP.. is something else now 🤣🤣
@elcactus11592 жыл бұрын
🤣🤣🤣exactly bro
@k-san53552 жыл бұрын
Now from the top-
@kavithapriyacj48684 жыл бұрын
Please add complete.computer networks lectures please sir
@true41894 жыл бұрын
Thank u
@khaleelshaikmohammad47593 жыл бұрын
Sir I have a small doubt. Why to write if statement inside the while Loop. Instead we can directly write while(n>0). Can you plz reply me 🙏🙏.
@gurucharankakaraparty48175 жыл бұрын
I have a doubt In while couldn't we write while(n>0) Wouldn't it be the same
@vishallondhe72985 жыл бұрын
yup, but i guess he wanted to demonstrate the break statement in loop.
@kranthikumar66154 жыл бұрын
Sir I have a doubt?? If unexpectedly user hit a "character" as a input,then what happened..... What's the output then?????? And explain why that is happening there!!
@JKSmith-qs2ii4 жыл бұрын
if you break in a loop that is already in a loop, does it just continue the outer loop? Aka if break is in loop 1 which is in loop 2, does a break cause loop 2 to function again without finishing loop 1?
@yujii88203 жыл бұрын
It continues the outer one.
@hetaeramancer3 жыл бұрын
@@yujii8820 r u sure -_-
@kritisrivastava64514 жыл бұрын
In first program can we use this condition- If(n!=0||n>0) { printf ("Enter a no."); scanf("%d",&n); } else break; }
@srikakulam90814 жыл бұрын
Yes you are right but using if else statement as you said we can take input value one time only.. We use if inside while we can enter positive number number of times. This example is given in this video..
@patchavavengalraovengalrao37844 жыл бұрын
for even numbers if we remove continue statement in second case...then what is the use of " if " statement????
@karimabdul50712 ай бұрын
2024❤, still feels afresh
@anuragmukherjee7052 жыл бұрын
legendary
@rudrapratapsingh10484 жыл бұрын
i have a doubt that when 4 will come than how i==n statement is true(because in upper statement we declared n=2) so it will be 4==2 which is not true plz explain someone
@shivamjha10492 жыл бұрын
Same doubt
@Hiyori___4 жыл бұрын
To print the odd numbers I created a program using the modulus operator. It gave me the same result but took 0.359 seconds while your program took only 0.141 seconds.
@s.karunanidhis.karunanidhi41466 жыл бұрын
Tq
@thanuja.072 жыл бұрын
Why am I getting output as 2345....1920🥺
@ertugrullovers91673 жыл бұрын
Kya maza ha yr Kaash ki asa clg ma bhi pdhahtay
@patrickdaly78763 жыл бұрын
is this used alot, i have a feeling this is a bit of a lousy programming style, couldnt both of these commands be executed just by changing the syntax of the loops a bit?
@dhruvpaglet2695 Жыл бұрын
Hi
@Elle___K4 жыл бұрын
Hello, thank you for these useful videos! In the first example (around 2mins) I am confused on two things: 1 - why is there the need for printf(...) and scanf(.....) at the start of main if that is what you are doing in the while loop? Is it not enough to have it in the while loop? 2 - For the printf and scanf in the while loop, why are there not curly brackets around this part of the code as there is more than one statement here as it is basically the else part right? I hope this makes sense. I am very new to programming and trying to slowly understand more and more but it is very confusing for me. Any help much appreciated! :)
@qandos-nour4 жыл бұрын
Hello A1) bro, variable n is like i in for loop, it is the counter that decide when the loop end we need to initilaize a value for that variable before the loop, and we need to update its value at the end of loop . A2) the curly brakets is a scope, not for more than one statement, in else we put brakets because it is a keyword like for and switch
@goodlife13023 жыл бұрын
@ Laura K you understood now right ?
@roroC7773 жыл бұрын
@@qandos-nour ty for trying to explain it. even if you failed