#include<stdio.h>
#include<string.h>
void main()
{
char a[20];
int x;
printf("enter the string:");
scanf("%s",a);
for(x=0;x<=strlen(a);x++)
{
if(a[x]>=97&&a[x]<=122)
a[x]=a[x]-32;
}
printf("%s",str);
}
#include<string.h>
void main()
{
char a[20];
int x;
printf("enter the string:");
scanf("%s",a);
for(x=0;x<=strlen(a);x++)
{
if(a[x]>=97&&a[x]<=122)
a[x]=a[x]-32;
}
printf("%s",str);
}
No comments :
Post a Comment