100% prog to convert name from lower to upper
#include<stdio.h>
void main( )
{
char a[ ]= "satyamu paluku";
int i,len ; //length of the array
len=sizeof(a);
for(i=0;i<14;i++)
{
if(a[i]>91 && a[i]<123)
{
a[i]=a[i]-32;
} //end of if
} //end of for
printf("\n converted string is= %s",a);
}
void main( )
{
char a[ ]= "satyamu paluku";
int i,len ; //length of the array
len=sizeof(a);
for(i=0;i<14;i++)
{
if(a[i]>91 && a[i]<123)
{
a[i]=a[i]-32;
} //end of if
} //end of for
printf("\n converted string is= %s",a);
}
తెరమీద
SATYAMU PALUKU
ఉపయోగం.. ముఖ్యంగా దరఖాస్తు పత్రాలు నింపేప్పుడు we will be asked to write/ type the name (కొన్ని సార్లు చిరునామా కూడా) in block letters only for clarity/ quick identification
స్వల్ప మార్పులతో the program can be used to convert frm upper to ro lower case as well
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.