Only when i was breakin down everyday because i felt i will fail in c programming, my lecturer shared this playlist, and now i am aiming to excel instead of just passing the test. Thanks Neso Academy!
this is the best series of C explaination ever. Please keep it up. Im trying to help this channel by sharing it everywhere i can. I'm a newbie for C in PIC using MPLAB. I wish in the near future, you could be able to have time for making videos based on C in PICs.
this channel is god for me and all of the persons who are watching these videos,this channel needs at least more than 1 million subscribers,Believe me he teaches EXTRAORDINARILY;he teaches EVERY POINT.THANK YOU SO MUCH SIR.
at 6:25 the two variables in the second case have different addresses so that actually makes it two different memory locations. However in the first case can it not be interpreted as changing the variable rather than it's redefinition because when applying a loop, and over multiple iterations the value of the variable might be changing but that isn't interpreted as the redefinition of the function.
Hello Jaspreet, hi Neso Academy. I highly appreciate your commitment to free education and I am very thankful for your high quality content. I followed the playlist C Programming and Data Structures from the first video on, and it is one of the best, if not the best introduction series I saw till this point. Many thanks and may you be blessed and I wish you much success with finding a way to get compensated for your valuable efforts. I will try to contribute with what ever I can to help keeping this channel alive for learners.
Sir, thank you soo much. I am searching for a right video that I could understand. In this process I came through ur video sir with a clear cut explanation. Thank you so much sir.
so why we are calling the function fun() in int main function is that because the function fun() outside the int main function gets executed..Thats why it prints output 10 in fun()
The example mentioned in the video says that we cannot enter another var that will make an error but as we learned in itialization of variable that we can change the var and am a little bit confused with it can u explain for Please ????
Sir you said that if we trying to acess a variable in internal block we can access the contents of outer block also so sir in output question 5:20 why the internal block print 4 as a output as we can see it.can access outerblock var and gives erorr due to redifinition of var because internal block can access outer block information plz explain sir
That is because,always a function will first look for the variable defined within its block .only if it is not defined anywhere inside it's block,the outer blocks are checked
Here,the function find the variable of value 4 within it's block.So 4 is printed .If the variable is not defined inside the block then 3 will be printed
the scope of a variable is not its lifetime. scope is the accessibility or visibility of a variable to other parts of a program. lifetime is the time between the creation of a variable and death of the variable, so a variable may be alive in the program but not accessible. (keep up the great work, your content is very very structured.)
This channel needs more subscriber. Great videos thanks Neso Academy.
This channel is God fo me in programming as a beginner
Only when i was breakin down everyday because i felt i will fail in c programming, my lecturer shared this playlist, and now i am aiming to excel instead of just passing the test.
Thanks Neso Academy!
hows it going now ?
।
😊
।
😊
K.a।।।
।।।।
।
।।
।
this is the best series of C explaination ever. Please keep it up. Im trying to help this channel by sharing it everywhere i can. I'm a newbie for C in PIC using MPLAB. I wish in the near future, you could be able to have time for making videos based on C in PICs.
All videos are very great!!! Thank u sir
Incredible explanation...
Exactly
You explain it so good, i just love this youtube channel, wish i had found it earlier!
The explanation is just perfect thanks alot sir 🙏
This vedio deserves lots of likes. The best ever vedio 😊
6 hour lecture content in 11.11 mins. Great work and Thank you!
Have you become developer
Wonderful...it starts to clear up in my brain all that confusing concepts of why, how... please keep up
this channel is god for me and all of the persons who are watching these videos,this channel needs at least more than 1 million subscribers,Believe me he teaches EXTRAORDINARILY;he teaches EVERY POINT.THANK YOU SO MUCH SIR.
ikr, he's literally the best C programming language teacher i'd ever come across.
@@hetaeramancer yes, it's true
Wow what a explanation...
Never before ever after, take a bow🥰
Well explained, Clear Concept and too much helpful for those students who are trying to learn c programming.Thank you so much sir for this video
at 6:25 the two variables in the second case have different addresses so that actually makes it two different memory locations. However in the first case can it not be interpreted as changing the variable rather than it's redefinition because when applying a loop, and over multiple iterations the value of the variable might be changing but that isn't interpreted as the redefinition of the function.
Neso Academy u r the best in the field good job guys
Hello Jaspreet, hi Neso Academy. I highly appreciate your commitment to free education and I am very thankful for your high quality content. I followed the playlist C Programming and Data Structures from the first video on, and it is one of the best, if not the best introduction series I saw till this point. Many thanks and may you be blessed and I wish you much success with finding a way to get compensated for your valuable efforts. I will try to contribute with what ever I can to help keeping this channel alive for learners.
Thank you :)
Wow... Sir..... Clear crystal !!!! Concept.... God bless you
After searching lots of garbage stuff I found this course was very much helpful
Thank you, Neso Academy for your incredible explanation.....
Exactly what i was looking for !!
Wow it,s very detailed.
Thank you!!!
Very helpful. Thanks
Though it wasn't a video fully on functions, but I cleared all my doubts about function.
This is a question of my class discussion, so you have well explained that and clarified that . Great job
I donno how the hell I decided to save this playlist on You tube not knowing this is gonna be a GOLDEN playlist.👑👑👑👑👑
Thank you Neso Academy for this informational video.
Thank u so much for your understandable and good explanation neso academy 😘😘
Just awesome....easily understandable 🙏
Thanku sir ❤
you are global variable😊😊.... Cause we all are able to reach you without any offline classes
Thanks A Lot Sir❤️ ...It helped me out 👍
What an explanation man👍👍
Very nice😊
Is it enough for placements ?
sir mind blowing concept
Just Perfectly Exaplined !!!! Amazing
Can anyone explain me last example?
int var = 3; is inside int fun(),so how it is called global variable?
Love of explaination from india
Greatly thankful sir for your large effort in explaining c language in detailed and depth .
This course is better than all the paid courses
Explanation soo clear
Best explanation
Ek dum chakaas👌👌
So glad i found these videos
Sir, thank you soo much. I am searching for a right video that I could understand. In this process I came through ur video sir with a clear cut explanation. Thank you so much sir.
Really great explanation
Thanks a lot for neso academy awesome explaination
you told that main function is the starting part of the program and there's another function fun??
please explain
Pure concepts!
At 10:52..why do we need to call that function [ fun()] in int main function
so why we are calling the function fun() in int main function is that because the function fun() outside the int main function gets executed..Thats why it prints output 10 in fun()
Sir why the function fun() doesn't print the global variable if we don't call the fun in the local variable??
The example mentioned in the video says that we cannot enter another var that will make an error but as we learned in itialization of variable that we can change the var and am a little bit confused with it can u explain for Please ????
Sir you said that if we trying to acess a variable in internal block we can access the contents of outer block also so sir in output question 5:20 why the internal block print 4 as a output as we can see it.can access outerblock var and gives erorr due to redifinition of var because internal block can access outer block information plz explain sir
If you get the answer explain it to me also
That is because,always a function will first look for the variable defined within its block .only if it is not defined anywhere inside it's block,the outer blocks are checked
Here,the function find the variable of value 4 within it's block.So 4 is printed .If the variable is not defined inside the block then 3 will be printed
ISO must certify this person is 100% genuine
excellent videos!!!! Best teacher ...
Thank you very much. You are a genius. 👍👍🔝🔝
Great explanation, Thank you
Bhaiya pehle global variable print hoga ya bracket ke andar wala??
When we have to use %d
,and only %d.we are giving here two integers right then what is the difference
? I used to know that a program is executed from the main function. Then how is the variable created before the start of execution of main function?
wonderful👍👍
great🌷
Great one sir!👍🏻
Tq sir 🙏🙏
scope != lifetime
just look at static local variable, scope : function
lifetime : program runtime
What's the difference between %d/n and only %d
Bhai next line ki difference hai bs ( %d
)
se next line aa jati hai
Great job please continue awesome videos salute to you
Great video! New sub!
Thank you sir😌
Sir, Please upload the notes in PDF format on the website.
Thanks for this content.
Thank you so much
the scope of a variable is not its lifetime. scope is the accessibility or visibility of a variable to other parts of a program. lifetime is the time between the creation of a variable and death of the variable, so a variable may be alive in the program but not accessible. (keep up the great work, your content is very very structured.)
very well explained goodddddd for uu
Thanks for the great content.
awesome video !!
How to access the global variable in a function which has a variable of the same name as the global variable
Thank you!!!
Sir helped a lot!!
Sir, please upload a full course on python programming also
Very helpful video, thank you!
osm explanation....
Where did i find these notes?
i am getting an error which says '1d returned exit status'
Calling a function means we are transferring the control from this to that function
good explanation....thank u sir
Wonderful
My output was 4 and 4, not 4 and 3. Any explanation of why?
Sir,, What is the lifetime of a dynamically created variable???
%d is nothing but storage of variable and
is used to print value in next line
9:17 ...very bull ...lol
you're amazing man, I have exams in 3 hours!
That's what we expect from us
Last minute study OP
0:05
1:55
6:37
8:04
10:55
what is difference in "%d/n" and "%d"?
%d is format specifier and
is a newline character
osm teaching
Great video
What will happen if we don't call the function fun() ?
Where is the lec pdf? Anyone?
1st and 2 nd videos are missing in playlist please add this videos in playlist
Please put the captions
super content
Is it enough for placements ?
Is it ok to write like this?
int main()
{
I wonder, because you write it this way:
int main() {
Sir Please make Lecture on C++👏👏
Thank u sir. Pls upload such videoes on java