C
c
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
int main()
{
int a=6;
int b[]={1,2};
int c = 4;
b[3] = 10;
printf("%d",a);
//printf("\n%d",&a);
//first try to run without 2nd printf then run it again with the 2nd printf with along the first one
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run