What will be the output of the given program?
main()
{
int i = 100;
int j = 600;
printf(“%d\n”);
}
1
Complier error
2
Run time error
3
100 600
4
Some garbage value
5
None of these
What will be the output of the given program?
main()
{
int i = 100;
int j = 600;
printf(“%d\n”);
}