C - Data Types - Discussion

You Are Here :: Home > C > Data Types - Discussion

 



Q.

What will be the value of i and j in the following code ?

main( )
{
auto int i,j=6;
printf("%d%d",i,j);
}

A. 0 6 B. Garbage values
C. Error D. Garbage value 6

Answer: Option D
Explaination:

No Explanation.



Discussion

Your Comments Goes here...
NameDiscussion