-
What will be the output of the following C code?
#include <stdio.h>
#include "printf"
void main()
{
printf("Welcome");
}
-
- Compilation Error
- Depends on compiler
- Welcome
- Varies
- None of these
Correct Option: A
Compilation Error
main.c:2:14: fatal error: printf: No such file or directory
#include "printf"
^~~~~~~~
compilation terminated.