I saw u r channel today and I didn't understand the concept of array in my clg but after I opened u r channel and seeing you are video I was soo happy no one can explain this much clearly after seeing 2 videos I am subscribing your channel ❤ thank you soo much sir
From the concept of what if we don't mention the length? length of array we can get from largest designator right but what if we have 0's after that largest designator?
Air u said that if we do not specify the length of array then it will be of the max position specified in Curly bracket But at 5:14 of this video you have 9 elements how is it sir can you please explain
i saw a method online as follows int num[5]={ [0 . . . 4 ] = 3 }; which will set num as { 3, 3, 3, 3, 3} but i couldn't apply such way on my computer how exactly should i convert the ideas into codes?
hello sir i have tried this in visual studio but as you said int arr[6]= {[0]=3,[4]=7}; is equal to {[0]=0,0,0,0,[4]=7,0}; but firstly in visual studio it is not accepting [0] only without a[0] and secondly if i mention it like this int arr[6]= {[0]=3,[4]=7}; it gives me output as 3,7,0,0,0,0 *using namespace std; //#define row 4; //#define col 2; int main() { int a[4] = {a[2]=5,a[3]=4}; for (int i = 0; i < 4; i++) {
Sir in this video you mentioned that 1 in postion 0, then the 2 in postion 6, 3 in position 7, i obtained this knowledge from you, I am not critizing you, requesting you to give clarification. Because I am learning the data structures from you only, the basics should be perfect, hence i request you please rectify it.
Hello sir It's really amazing concept but sir when i initialized an array in tubro c compiler then i got a lot of errors. Like expression syntax error, declaration syntax error and so more...... Is this concept compiler dependent? And in which compiler can i use this concept? Sir plz tell me i am excited to use this concept. Plzzzzz Thanks so much sir And keep giving us wonderful knowledge. Doing great job sir.
It's not compiler dependent, but a standard C99 feature. The real problem is TurboC, which last version was released much before 1999 and later updates are only bug fixes. Soo, you have a very outdated compiler.
IF you Print then it should print 4 at position 4, and rest from 0 to 9 will intialize to 0. Reason : The Later will replace the previous one as it seems in every Language.
Because Turbo C uses very Old version of gcc compiler, that doesn't have these many features. gcc has been updated many times recently.Try it in Codeblocks OR VS Code.
Why not our college has teachers like you... Well explained
Attending lectures in college is completely waste of time.
@@jugalpaul5336 it is only meant for attendance
Trueeee, whyyyy
Yes i am agree with him or her
We have Good teachers but there are more distractions in class
I really impressed by you why your way of teaching.
I understand more the lesson because of Neso Academy than my professors
Love it! Consistent way of teaching in each lecture of each topic ♥️
There is no word of admiration...
Wtf how can i understand this so easily its like learning alphabets 😅,ur truely a genius
Perfect video...... Everything is awsm from content to your voice 😘😘😘😘tysm bhai
that's new and interesting concept.Keep bringing up more such concepts👍
I hadn't studied about it.Thanks alot sir .
I’ve got more interest to learn C after watching this video. Thank you sir ❤️ Precise and perfect 👌
Really really nice video.. beautifully compiled and presented .. god bless you sir .
The little humour 2:34 of yours always hits me though😂👌Great job sir
I finding this mssg in comment 😂
I saw u r channel today and I didn't understand the concept of array in my clg but after I opened u r channel and seeing you are video I was soo happy no one can explain this much clearly after seeing 2 videos I am subscribing your channel ❤ thank you soo much sir
We're glad you're enjoying our content!
Love from india awesome 👏👏
Each n every thing is been covered in a very simple ways it helped me a lot thank you.
Thank you so much neso academy. For wonderful tutorial... really loved ur all lecture ..
Sir,
Which books you used for this information,
Sir i need such this type of deep information.
You are 💎
Whenever I have any problem in any topic ,i refer to your videos.
2:38 Meme maker bro
Neso Academy is GOATED 🙌🙌
I can confidently say you're the best ! thank you so much
you are one of the best teacher .
Ur way of teaching is really osm❤😊
thanks for this lovely video
presented well and more interesting to learn
Bro you'r awesome seriously continue good work...
Thank u sir ...very well taught
Informative content...Not covered in books covering fundamentals.
Awesome!!! simple Awesome.... excelent array class
Plzz upload videos on 8086microprocessor
you people are just awesome..what an explaination
Best efforts sir
From the concept of what if we don't mention the length?
length of array we can get from largest designator right but what if we have 0's after that largest designator?
Through experience, it became clear that the compiler would ignore it
Air u said that if we do not specify the length of array then it will be of the max position specified in Curly bracket
But at 5:14 of this video you have 9 elements how is it sir can you please explain
numbering of arrays start from 0 , so the elements in that array is 8 , not 9
Awesome video sir
Thanks a lot bro🔥
The desginated said 5:55 nah i would win
I love ur videos.. u r just amazing 🥰🥰
Can you please make video on bubble sorting
good job brother
damnn man u explained every point perfectly...
designated wins. is it because of precedence of comma and assignment operator ?
I want teacher like you in my college 😣
Very informative video...
🙌 Respect 🙏
Sir in designated array it will store array input not designated ..so here designated not win
how can I filled arrays with another number instead of 0 in the rest of automatical position
Sir i want array basic program (simply understanding).and this program.
Don't you provide those slide??
i saw a method online as follows
int num[5]={ [0 . . . 4 ] = 3 };
which will set num as { 3, 3, 3, 3, 3}
but i couldn't apply such way on my computer
how exactly should i convert the ideas into codes?
No ,u can give value for elements one by one
what if the garage value comes
hello sir i have tried this in visual studio but as you said
int arr[6]= {[0]=3,[4]=7};
is equal to {[0]=0,0,0,0,[4]=7,0};
but firstly in visual studio it is not accepting [0] only without a[0] and secondly if i mention it like this int arr[6]= {[0]=3,[4]=7}; it gives me output as
3,7,0,0,0,0
*using namespace std;
//#define row 4;
//#define col 2;
int main()
{
int a[4] = {a[2]=5,a[3]=4};
for (int i = 0; i < 4; i++)
{
cout
imgur.com/a/kv9JTah
the output of my program is there
Awesome 👍😊
well this is new! thanx
Sir in this video you mentioned that 1 in postion 0, then the 2 in postion 6, 3 in position 7, i obtained this knowledge from you, I am not critizing you, requesting you to give clarification. Because I am learning the data structures from you only, the basics should be perfect, hence i request you please rectify it.
Hello sir
It's really amazing concept but sir when i initialized an array in tubro c compiler then i got a lot of errors. Like expression syntax error, declaration syntax error and so more......
Is this concept compiler dependent?
And in which compiler can i use this concept?
Sir plz tell me i am excited to use this concept.
Plzzzzz
Thanks so much sir
And keep giving us wonderful knowledge.
Doing great job sir.
It's not compiler dependent, but a standard C99 feature.
The real problem is TurboC, which last version was released much before 1999 and later updates are only bug fixes.
Soo, you have a very outdated compiler.
Use visual studio code for fast n advance coding of c
This type of initialization is not supported in dev c
Good job
How I get The Complete C and Data Structure videos? If the Rest of this videos are paid then please tell how to Join? please tell us about that.....
What if i do
int a[10] = {[4]=6, [4]=4}
?
IF you Print then it should print 4 at position 4, and rest from 0 to 9 will intialize to 0. Reason : The Later will replace the previous one as it seems in every Language.
Outstanding sir
This program I used in turbo c.it show me as an error(syntax errors) why?
Try it in code blocks you'll get
Because Turbo C uses very Old version of gcc compiler, that doesn't have these many features. gcc has been updated many times recently.Try it in Codeblocks OR VS Code.
Thank u
Perfecttttt😍
Hi
Am done with this all Videos....Please sir Upload the Remaining Videos As Early as Possible...
Still waiting for completion of Network and analog? ?
Mast sir
Nice
Tq sir
Arre arre array , nice
nice
Is it useful in java