CODING:
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char a[25];
clrscr();
printf("Enter string in lower case: ");
gets(a);
printf("\n\nString in upper case: %s",strupr(a));
getch();
}
|
CODING |
|
OUTPUT |
For any query or suggestion please comment below...
No comments:
Post a Comment