Array declaration and specification in c/c++

main()
{
int a[5]={2,3};
printf(“\n%d%d%d”,a[2],a[3],a[4]);
}

Tutorial answer:
0 0 0
Debugging solution:





Post a Comment

0 Comments