1.

WAP to change a string from lower case to upper case.

Answer»

Program:

#include<stdio.h>
#include<conio.h>
#include void main()
{
char str [20];
puts (“enter a string in lower case”);
gets (str);
strupr (str);
printf (“upper case = %S”, str);
}



Discussion

No Comment Found