Input
Output
#include <stdio.h> #include <string.h> #define INPUT void main() { char i[20]="Welcome"; #ifndef INPUT i[20]="Hello"; #else printf("Enter the String of i is:"); scanf("%s", &i); #endif printf("The String of i: %s\n", i); }