Saved Bookmarks
| 1. |
write a program to accept a sentence containing two sentences only. the sentence may be terminated by either "." "?" or "!". any other character may be ignored. the word may be separated by only one single blank and to be in upper case. separate the paragraph in two sentences find common words and frequency of common words with any example |
|
Answer» In c language, I wrote this PROGRAM, #include #include void MAIN() { CLRSCR(); printf("HEY!"); printf("How are you?"); printf ("okay bye."); getch(); } |
|