4) What will this program print?
main()
{
int i = 2;
{
int i = 4, j = 5;
printf("%d %d", i, j);
}
printf("%d %d", i, i);
}
Answers
Answered by
4
It will print nothing and will give an error..
Similar questions