📚 Practice Mode
C Programming Advanced Concepts
Learn at your own pace with hints and detailed explanations
1 / 24
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