Problem Statement - Header File Marking
Observe the following program very carefully and write the name of those header file (s), which are essentially needed to compile and execute the following program successfully:
typedef char STRING[80];
void main()
{
STRING Txt[] = “We love Peace”;
int Count=0;
while (Txt[Count]!=’\0′)
if (isalpha(Txt[Count]))
Txt[Count++]=’@’ ;
else
Txt[Count++]=’#’ ;
puts (Txt) ;
}
Solution
CSKC| Created: 7-Jan-2019 | Updated: 14-Sep-2019|CBSE12A-2015