Input
Output
#include<stdio.h> #ifndef _STRING_H #error Include string header file then compile #else void main(){ char s[]="Hello"; printf("%s",s); } #endif