-
The below two lines are equivalent to ________.
#define C_IO_HEADER <stdio.h>
#include C_IO_HEADER
-
- #include<stdio.h>
- #include”C_IO_HEADER”
- #include”printf”
- #include<stdlib.h>
- None of these
Correct Option: A
Since C_IO_HEADER is defined to be <stdio.h>, the second line becomes #include<stdio.h>, since C_IO_HEADER is replaced with <stdio.h>