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?
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.
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 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.
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++) {
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
I hadn't studied about it.Thanks alot sir .
that's new and interesting concept.Keep bringing up more such concepts👍
Each n every thing is been covered in a very simple ways it helped me a lot thank you.
Really really nice video.. beautifully compiled and presented .. god bless you sir .
I’ve got more interest to learn C after watching this video. Thank you sir ❤️ Precise and perfect 👌
Whenever I have any problem in any topic ,i refer to your videos.
Perfect video...... Everything is awsm from content to your voice 😘😘😘😘tysm bhai
Thank you so much neso academy. For wonderful tutorial... really loved ur all lecture ..
you are one of the best teacher .
presented well and more interesting to learn
Love from india awesome 👏👏
thanks for this lovely video
Neso Academy is GOATED 🙌🙌
2:38 Meme maker bro
Ur way of teaching is really osm❤😊
The little humour 2:34 of yours always hits me though😂👌Great job sir
I finding this mssg in comment 😂
Sir,
Which books you used for this information,
Sir i need such this type of deep information.
You are 💎
Thank u sir ...very well taught
Bro you'r awesome seriously continue good work...
Informative content...Not covered in books covering fundamentals.
The desginated said 5:55 nah i would win
Best efforts sir
you people are just awesome..what an explaination
Awesome!!! simple Awesome.... excelent array class
Awesome video sir
I want teacher like you in my college 😣
Thanks a lot bro🔥
good job brother
Plzz upload videos on 8086microprocessor
damnn man u explained every point perfectly...
Very informative video...
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
I love ur videos.. u r just amazing 🥰🥰
well this is new! thanx
Can you please make video on bubble sorting
designated wins. is it because of precedence of comma and assignment operator ?
Outstanding sir
Awesome 👍😊
Good job
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.
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
🙌 Respect 🙏
Sir i want array basic program (simply understanding).and this program.
Sir in designated array it will store array input not designated ..so here designated not win
Thank u
how can I filled arrays with another number instead of 0 in the rest of automatical position
Am done with this all Videos....Please sir Upload the Remaining Videos As Early as Possible...
Tq sir
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
Don't you provide those slide??
Mast sir
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
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 the garage value comes
Nice
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
This type of initialization is not supported in dev c
Perfecttttt😍
Hi
Arre arre array , nice
nice
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.
Still waiting for completion of Network and analog? ?
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.
Is it useful in java