-
What will be the output of the following C code (when 10 and 20 are entered)?
#include <stdio.h>
void main()
{
int n1, n2;
printf("Enter Numbers: ");
scanf("%d", &n2);
scanf("%d", &n1);
printf("%d\t%d\n", n2, n1);
}
-
- 10 Garbage value
- Garbage value 20
- Compilation Error
- Undefined behaviour
- 10 20
Correct Option: E
10 20