#include <stdio.h>
int main() {
printf( "Upper case of A is %c\n", toupper('A'));
printf( "Upper case of 9 is %c\n", toupper('9'));
printf( "UpperLower case of g is %c\n", toupper('g'));
getchar();
return 0;
}
int main() {
printf( "Upper case of A is %c\n", toupper('A'));
printf( "Upper case of 9 is %c\n", toupper('9'));
printf( "UpperLower case of g is %c\n", toupper('g'));
getchar();
return 0;
}
0 comments:
Post a Comment