1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| #include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char word[80];
clrscr();
printf("ENTER ANY WORD OR NAME\n");
scanf("%s",&word);
strupr(word);
printf("conevterd to %s ",word);
getch();
}
|
No comments:
Post a Comment