course is going nice bro but due to the hectic schedule not able to go with this parallel course. As I need to focus on some other stuffs also, but I am making it manageable. Thank you for this wonderful course.
An add is continuously displaying over video that "worried about phython and how to get started" but i am not even worried about it i know harry bhai is always with me so why should is worry...LOL
I share your course with my friend..⭐⭐⭐⭐⭐Thanks for sharing your knowledge..... God and Goddess gives you lots of success and fame.....Please be always same as you are........🌻🌻🌻🌻🌻🙏🙏🙏🙏
Scope resolution operator '::' is not supported in C. This is to clear the doubt who has learned c++ first, then learning C as College syllabus_ can we not use scope resolution operator in place of using extern keyword for referring to a global variable.
Actually Harry Bhai has described two types of properties that the storage classes have, and their uses, rewatch other videos if you don't understand this one.Also if that didn't workthen go for articles on the net and read them, this course made me able enough to get what is written in those articles, or otherwise watch one of his newer C courses
Directly jumping into the lessons without solving the exercises because I really need more practice to be able to reach the proficiency to solve those exercises... 😅😅
Here, At 26:11 When I try to use the "auto" keyword in my Programme it throws an error. Because " In C, the auto keyword is not typically used for variable declaration as in some other languages. In C, auto is a storage class specifier rarely used explicitly because variables in C are by default automatic (i.e., they have automatic storage duration). Suppose you are looking for a way to have automatic storage duration for a variable (meaning it's created and destroyed automatically within the scope). In that case, you don't need to use the auto keyword explicitly. Variables without any storage class specifier are automatic by default." Thank You.
harry Sir, Please make a video on running time errors of python like NZEC, EOF etc. You completed your python learning series on Pycharm Community which never tell running time error, I have completed it But Codechef and Hackerearth do not accept code as Pycharm. Codechef shows runtime error in same code as run Pycharm program
Had a doubt :( Using #include "temp.c" we are taking whole file which will necessarily consume more space in our main program than simply declaring new variable in the same program. Like said in the video we are not assigning memory to the variable if extern is used, but definitely file gonna take more memory. So how can extern be helpful?
if the "int harry=90;" is required by multiple main() functions in multiple files, without redifining harry. altough if you need to edit harry for all the main() funcs, then you have to edit it only once.
Sir 31:09 pe jo apne extern use kra h function k andr ,wo krne ki jrurt kyu pdi ,jbki int sum globally declared h. Fr to hm sum ko use kr skte hn kisi bi function k andr. Plzzz reply.I am confused
Tnx harry vai , mera hindi itna acca nahi ha . Thats way i say sorry. I am a bangli from bangladesh . Mana apse boohot accaca c program shik rahaho. Agin tnx vaia .
I was facing some trouble with extern (global variable). As what to do if I define a global variable and made a local variable with same name then how to distinguish between the two inside the program and use them both as what would show up? The local or global variable if I call them and then found this on google. int x = 50;
int main() { // Local variable x int x = 10; { extern int x; printf("Value of global x is %d ", x); } printf("Value of local x is %d ", x); return 0; } I hope it helps if someone is facing the same problem as I did.
Bro when u write global, it means that the variable which is just totally outside will be considered....that is , it goes fully outside the loops or the main and then that value is considered but if u use local that means just the variable inside is considered and nothing else
harry bro please make videos in parts because after seeing a 36min of video we feel that we have done a lots of work. otherwise you are the god for all of us.
31:44 example ठीक से नही बनाया और कन्फ्यूजन कर दिया ,variable declaration का कोई मतलब ना रहा क्यू की func मे a और b लिया है ,और जब फंक्शन यूज किया तब भी पैरामीटर a और b का उल्लेख किया जब की फंक्शन में अब sum to सीधा वरीबले से आता है नही की फंक्शन का a+b से।तो example ठीक से ना लेने से सब कन्फ्यूजन कर दिया।कोड ठीक होगा ,रिजल्ट भी देगा लेकिन तरीका इलॉजिकल है
bro I have a doubt in pointers suppose in a integer pointer if we use ptr=&a then only one address is stored in ptr but integer contains several bits which have different address so how we can access the whole integer with that single address?? please reply iska answer nahi mil pa raha thik se
Basically ptr Contains The Base Address suppose Int i = 0; int* ptr = &i ; ..ptr Contains The base Adress Of I, And The Pointer type in integer so basically pointer will fetch 4 bytes everytime directly ...suppose adress of "i" is 100 to 104 that is 4 bytes , then ptr will contain 100 and It will fetch the data Directly of the 4 bytes that's if we do "ptr++" the next adress in ptr will be 104 directly this will be true in array case but for sake of understanding i did it .... your memory looks like "00000000 00000000 00000000 0000000" If i =8 then "00000000 00000000 0000000 000010000" this is how memory will look
Memory allocation ram mai hota hai,int ka size 4bytes hai ,than ram mai 4bytes ki memory allocate hogi and according to int range we can store the value.
Harry bhai ek issue ara tha exercise me jese ki mene dala ke 3 character ka mera id h uske id ki value mene dalli suppose 345 but phr next iteration nai ata wo next iteration tab ata h jab me enter marke koi value phr enter mary phr wo next iteration pe ata h esa kyu hora pls help
I am not feeling well since 2-3 days. Caught a cold.. Voice thodi low lage to sorry!
Let me know how is your C programming and this course is going?
course is going nice bro but due to the hectic schedule not able to go with this parallel course. As I need to focus on some other stuffs also, but I am making it manageable.
Thank you for this wonderful course.
It's ok
Get well soon Harry Bhai
Bdiya bro
tx so much harry
An add is continuously displaying over video that "worried about phython and how to get started" but i am not even worried about it i know harry bhai is always with me so why should is worry...LOL
Best C series in u tube. You are superb and great coder.
Yes sir I understood all the videos till now and this is the best c language course in youtube
One of the best channel on RUclips to learn programming language.... ♥️😍
Mere ko ye video samjh aayi 4 baar dekh chukha hu
I share your course with my friend..⭐⭐⭐⭐⭐Thanks for sharing your knowledge..... God and Goddess gives you lots of success and fame.....Please be always same as you are........🌻🌻🌻🌻🌻🙏🙏🙏🙏
Very detailed tutorial...thank u sir❤️
Best c tutorial series in u tube
....
And Thank u harry bhai
Scope resolution operator '::' is not supported in C.
This is to clear the doubt who has learned c++ first, then learning C as College syllabus_ can we not use scope resolution operator in place of using extern keyword for referring to a global variable.
thank you much harry bhai for this excellent playlist, i'll be really grateful of yours always, thanks a lot ❤❤
You are awesome bhai.....⭐⭐⭐⭐⭐🙏🙏🙏🙏
Actually Harry Bhai has described two types of properties that the storage classes have, and their uses, rewatch other videos if you don't understand this one.Also if that didn't workthen go for articles on the net and read them, this course made me able enough to get what is written in those articles, or otherwise watch one of his newer C courses
Great video i really like this channel
Sir i watch your every video. i also love your teaching style, i understood everything but not run program in machine . given me any solution sir.
Very helpful course 👍👍
Directly jumping into the lessons without solving the exercises because I really need more practice to be able to reach the proficiency to solve those exercises... 😅😅
very interesting course harry bhai
BestC tutorials in you tube
Here, At 26:11 When I try to use the "auto" keyword in my Programme it throws an error. Because "
In C, the auto keyword is not typically used for variable declaration as in some other languages. In C, auto is a storage class specifier rarely used explicitly because variables in C are by default automatic (i.e., they have automatic storage duration).
Suppose you are looking for a way to have automatic storage duration for a variable (meaning it's created and destroyed automatically within the scope). In that case, you don't need to use the auto keyword explicitly. Variables without any storage class specifier are automatic by default." Thank You.
Awesome explanation 💜
Awsome harrry bro
Amazing teaching
Thank you sir ❤❤❤❤❤❤❤
Very good brother
Nice video
bhai ek video vs ke debugger ko use kaise kare us pr bana do please 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼🙏🏼
harry Sir, Please make a video on running time errors of python like NZEC, EOF etc. You completed your python learning series on Pycharm Community which never tell running time error, I have completed it But Codechef and Hackerearth do not accept code as Pycharm. Codechef shows runtime error in same code as run Pycharm program
Very nice video👍👍
Thanks Harry Bhaiya
Thankyou bhaiya love you❤️❤️
Thank you so much Harry Bhaiyya
Thank you so much
Love you sir
Harry bhai sab ka alag program banao 🙏😭😭😭😭😭😭😭😭😭😭😭😭🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭😭🙏🙏🙏🙏🙏🙏🙏🙏🙏
Harry bhaiya...
Aapne jo slides use ki hain videos me, Vo available hain kya....??
Will come back and finish the coding part before liking this video again ❤ 26-Sep-2024
Awesome👍💞
Best tutorial class
Bhaiya dart language sikhange kya? aur ek request thi python pe kich hard aur bade project layiye
Great video
Had a doubt :(
Using #include "temp.c" we are taking whole file which will necessarily consume more space in our main program than simply declaring new variable in the same program. Like said in the video we are not assigning memory to the variable if extern is used, but definitely file gonna take more memory. So how can extern be helpful?
if the "int harry=90;" is required by multiple main() functions in multiple files, without redifining harry. altough if you need to edit harry for all the main() funcs, then you have to edit it only once.
Thank u so much sir..
Vaia always share your knowladge again tnx
I like this video
After seeing Globle&statics.... Program to me..... Hmmm you are rich
Sir 31:09 pe jo apne extern use kra h function k andr ,wo krne ki jrurt kyu pdi ,jbki int sum globally declared h. Fr to hm sum ko use kr skte hn kisi bi function k andr. Plzzz reply.I am confused
Function k andr kewal int sum likhte frr bhi hmara 343 print hota...
Tnx harry vai , mera hindi itna acca nahi ha . Thats way i say sorry. I am a bangli from bangladesh . Mana apse boohot accaca c program shik rahaho. Agin tnx vaia .
Vaia ni bhaiyya
this video is a bit confusing 😐😐😐😐😐😐
tnx bro
Sir plz python wali series ki videos mat delete kijie plz🙏🙏🙏
Harry bhai , after including temp.c no error is coming in my computer without removing main from the temp.c
what is the reason ?
Yaar harry!
Ghuma ghuma kar mat kaho!
Onto the through kahi yaar!
Last me thoda confusion hota hai!!!
I was facing some trouble with extern (global variable). As what to do if I define a global variable and made a local variable with same name then how to distinguish between the two inside the program and use them both as what would show up? The local or global variable if I call them and then found this on google.
int x = 50;
int main()
{
// Local variable x
int x = 10;
{
extern int x;
printf("Value of global x is %d
", x);
}
printf("Value of local x is %d
", x);
return 0;
}
I hope it helps if someone is facing the same problem as I did.
Bro when u write global, it means that the variable which is just totally outside will be considered....that is , it goes fully outside the loops or the main and then that value is considered but if u use local that means just the variable inside is considered and nothing else
Sir jaldi se graphics ka video laiye please sir i'm waiting for graphics
Following bro
tx harry
harry bro please make videos in parts because after seeing a 36min of video we feel that we have done a lots of work. otherwise you are the god for all of us.
after using extern it not working in vs code and giving the error the amy variable is undefined
First
31:44 example ठीक से नही बनाया और कन्फ्यूजन कर दिया ,variable declaration का कोई मतलब ना रहा क्यू की func मे a और b लिया है ,और जब फंक्शन यूज किया तब भी पैरामीटर a और b का उल्लेख किया जब की फंक्शन में अब sum to सीधा वरीबले से आता है नही की फंक्शन का a+b से।तो example ठीक से ना लेने से सब कन्फ्यूजन कर दिया।कोड ठीक होगा ,रिजल्ट भी देगा लेकिन तरीका इलॉजिकल है
Sum= 0 kese aya
Or last me jo tamp or tutorial 49 sath me chal rha hai wo kese use ho rha hai
Static me isme 4 tak hi q print hu iske aghe q nhi
What is use of return (expretion)
Sir VS code m compile kese krte hain
bro I have a doubt in pointers suppose in a integer pointer if we use ptr=&a then only one address is stored in ptr but integer contains several bits which have different address so how we can access the whole integer with that single address?? please reply iska answer nahi mil pa raha thik se
Basically ptr Contains The Base Address suppose
Int i = 0;
int* ptr = &i ;
..ptr Contains The base Adress Of I, And The Pointer type in integer so basically pointer will fetch 4 bytes everytime directly ...suppose adress of "i" is 100 to 104 that is 4 bytes , then ptr will contain 100 and It will fetch the data Directly of the 4 bytes that's if we do "ptr++" the next adress in ptr will be 104 directly this will be true in array case but for sake of understanding i did it .... your memory looks like "00000000 00000000 00000000 0000000"
If i =8 then "00000000 00000000 0000000 000010000" this is how memory will look
Memory allocation ram mai hota hai,int ka size 4bytes hai ,than ram mai 4bytes ki memory allocate hogi and according to int range we can store the value.
23:53
Vai best laptop with in 65000rs. Or us may ka ka rahana chaiya. For programming nd web design and development and med level editing. Kar sakta hu
Harry bhai ek issue ara tha exercise me jese ki mene dala ke 3 character ka mera id h uske id ki value mene dalli suppose 345 but phr next iteration nai ata wo next iteration tab ata h jab me enter marke koi value phr enter mary phr wo next iteration pe ata h esa kyu hora pls help
In this case use free() function
Use loop.
BEST Bla Bla Bla Bla BEST
funtastic
18:30
Jo description main link h source code and other info ka vha pr classes ka baare main wrotten description show nhi ho rhi
Plz look into it
Extern variable example given in notes is incorrect as main is declared twice ??
Bhai videos 25 min se lengthy mt banaya kro plzz
Itne //comments se problem hoti hai ek hi problem me, smjh hi nhi aata 😑😑
bhai eske notes bhi de diya kro plz
i am facing some prob. becouse my exercises are not going well...
Second
Script solve kardo na yaar
blud himself got confused
hell nah💀🙏
I didn't understand the use of extern. The code works the same without extern keyword.
Sir Ap jb voice over krty hn to bech ma poti a jai to kya kry gy
Bhaia code ko comment out kaisa karta hai
Soaib aslam
Sanskrit OMG
Hlo sir plz make that type of video in which all the syntax of every program is available plz sir
11-06-24
aapaka phela video jeshme mere ko kuch bhi samaj me nahi aaya
Can you please use light mode instead of black mode for vcpp , if possible
nooo plssssssssssssssssssssssss
Sir aapko khud acche se sikhne ki need hai bcoz aapke conceps hi clear nh hoo paa re..orr jyada confusion hogya
Thanks bro. My Name: Dheeraj Add me to this course
This is not beginner friendly at all..
This is part of dynamic memory allocation which is last topic in C
Please comment out mat kiya karo
//50 ho gaya ;
Aapne c programming achhe se nahi padhaya bahut short cut mai bahut kuch
Very nice video ❤🔥👍