What will be the output of the following C program?
#include stdio.h

int main()
{
int x[5] = { 10, 20, 30 };
printf("%d", x[3]);
return 0;
}

Posted on by