/* program to print upper case character */
# include <stdio.h>
void main ()
{
char ch ;
clrscr () ;
printf ("/n enter a lower case character:") ;
scanf ("%c", ch ) ;
ch = ch-32 ;
printf ("%c", ch) ;
getch () ;
}
# include <stdio.h>
void main ()
{
char ch ;
clrscr () ;
printf ("/n enter a lower case character:") ;
scanf ("%c", ch ) ;
ch = ch-32 ;
printf ("%c", ch) ;
getch () ;
}
What programming language did you use?
ReplyDeleteIn these days we are working on c languages but our team have also knowledge of all other languages i.e python,c++,java and all other first we want to write series of c languages and then start program of other languages.
Delete