C Programming Advanced Concepts
Casual Mode - Take your time!
1 / 24
Correct
0
Incorrect
0
Score
0%
Multiple Choice
#include<stdio.h>
#include<conio.h>
main()
{
int a[3],i;
for(i=0;i<3;i++)
a[i]=i++;
for(i=0;i<3;i++)
printf(" %d",a[i]);
}
- 0 Garbage Value 2
- 0 1 2
- 1 2 3
- None of the above