what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / rameesh ka
answer is
3,2,2
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between new and malloc functions?
Can a pointer be volatile in c?
What are called c variables?
How to delete a node from linked list w/o using collectons?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What are structure types in C?
Why are algorithms important in c program?
What is the best way to store flag values in a program?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Why is c called c not d or e?
Why ca not I do something like this?
show how link list can be used to repersent the following polynomial i) 5x+2
What are the application of c?
Is stack a keyword in c?