//WAP TO CHANGE A STRING LOWER TO UPER CASE
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char str[25];
int len;
//clrscr();
printf("Enter the String: ");
gets(str);
strupr(str);
printf("\nYour String in Uppercase %s",str);
}
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char str[25];
int len;
//clrscr();
printf("Enter the String: ");
gets(str);
strupr(str);
printf("\nYour String in Uppercase %s",str);
}
No comments:
Post a Comment