What is an example of enumeration?
Answer / antony edwin
when you list all of an author's works one by one.
| Is This Answer Correct ? | 0 Yes | 0 No |
If input is 123 then how to print 100 and 20 and 3 seperately?
How can I invoke another program from within a C program?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is the difference between struct and union in C?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What is Your Name :)
How can you find out how much memory is available?
change to postfix a/(b+c*d-e)
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
what is an inline fuction??
What is external variable in c?