Advertisements
Advertisements
प्रश्न
Observe the following program very carefully and write the names of those header files (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=O;
while(Txt[Count]!='\0')
if (isalpha(Txt[Count]))
Txt[Count++]='@';
else
Txt[Count++]='#';
puts(Txt);
}
उत्तर
# include <isotream.h>
# include <string.h>
shaalaa.com
ifstream, ofstream, Classes
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Write function definition for TOWER() in C++ to read the content of a text file WRITEUP.TXT, count the presence of word TOWER and display the number of occurrences of this word.
Note:
- The word TOWER should be an independent word
- Ignore type cases (i.e. lower/upper case)
Example:
If the content of the file WRITEUP.TXT is as follows:
Tower of hanoi is an interesting problem. Mobile phone tower is away from here. Views from EIFFEL TOWER are amazing. |
The function TOWER( ) should display the following :
3 |