Problem Statement - Header File Marking
Observe the following program very carefully and write the names of those header file(s), which are essentially needed to compile and execute the following program successfully:
typedef char TEXT[80]; void main() { TEXT Str[] = "Peace is supreme"; int Index=0; while (Str[Index]!='\0') if (isupper(Str[Index])) Str[Index++]='#'; else Str[Index++]='*'; puts(str); }
Solution
CSKC| Created: 4-Jan-2019 | Updated: 14-Sep-2019|CBSE12D-2015