Computer Science, asked by yaswanthp009, 5 hours ago

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 hiteshgyanchandani6
4

It will print nothing and will give an error..

Similar questions