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
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Why is void main used?
Is null valid for pointers to functions?
How can I read data from data files with particular formats?
In a switch statement, what will happen if a break statement is omitted?
What is the use of a static variable in c?
What is structure in c explain with example?
What is console in c language?
Is it possible to execute code even after the program exits the main() function?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is union and structure in c?
What does void main () mean?
What is the main difference between calloc () and malloc ()?
What is the difference between malloc calloc and realloc in c?