Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
int startingPoint[2]={i,j};

I got this after reading an online code.Is this correct? Means if values of i and j can be changed at runtime before this statement, will this initialize the array with the correct values? Please explain.

share|improve this question

2 Answers

up vote 8 down vote accepted

This works in C99 but not in C89.

share|improve this answer
1  
See also stackoverflow.com/questions/160960/… . – Peter Eisentraut Jan 21 '10 at 8:23

int startingPoint[2]={i,j};
I got this after reading an online code.Is this correct?

Yes that is a correct C code(will work on all modern C compilers).However that wont work on a C89 compiler.

Means if values of i and j can be changed at runtime before this statement, will this initialize the array with the correct values?

Yes!

scanf("%d %d",i,j);
/* some code */

int abc[]={i,j};
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.