Home » C Programming » Preprocessors » Question
  1. What will be the output of the following C code snippet?
    #include (stdio.h)
    void main()
    {
    printf("Welcome");
    }
    1. Depends on compiler
    2. Compilation Error
    3. Welcome
    4. Nothing
    5. None of these
Correct Option: B

File to be included must be specified either in “” or <>.



Your comments will be displayed only after manual approval.