📚 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]);
}

  1. 0 Garbage Value 2
  2. 0 1 2
  3. 1 2 3
  4. None of the above