-
What will be the output of the following C code if following commands are used to run(considering Newfile exists)?
gcc -otest test.c
./test < Newfile
#include <stdio.h>
int main()
{
char ch = 'U';
putchar(ch);
}
-
- U on the screen
- Undefined behaviour
- Compilation Error
- U in the myfile file
- None of these
Correct Option: A
U on the screen