Answer Posted / naresh.s
main()
{
char ch;
scanf("%d",&ch);
if(ch>64&&ch<91)
printf("capital");
else
printf("small");
}
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is c programming structure?
What is the difference between declaring a variable and defining a variable?
Can 'this' pointer by used in the constructor?
What is a char c?
What is the sizeof () a pointer?
What are the types of functions in c?
What are operators in c?
What the different types of arrays in c?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Why isn't any of this standardized in c? Any real program has to do some of these things.
Is c dynamically typed?
How can I generate floating-point random numbers?
What is the need of structure in c?
Explain what are multibyte characters?
How can I copy just a portion of a string?