208) The following program
main()
{
int i = 2;
{ int i = 4, j = 5;
printf ("%d%d", i, j );
}
printf("%d%d", i, j );
}
Answer is:
will not compile successfully
Related C Programming MCQ with Answers
Answer is:
262164 262164 262164
Answer is: