Define header file name in macro : Macro Constant « Macro Preprocessor « C / ANSI-C
- C / ANSI-C
- Macro Preprocessor
- Macro Constant
Define header file name in macro
#define STDIO <stdio.h>
#include STDIO
int main(void)
{
printf("This is a test.");
return 0;
}
Related examples in the same category