int a=3,1;
int b=(5,4);
I am a beginner in c and I noticed in a book this type of initialization . what does this initialisation
mean?
int a=3,1;
int b=(5,4);
I am a beginner in c and I noticed in a book this type of initialization . what does this initialisation
mean?
int b = (5,4)
will first evaluate 5 then 4. The last thing that is evaluated will be assigned to the variable. For example
int b = (5,4,3,2,1)
in this case the value of b will be 1.