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

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