main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / cholan
55545
| Is This Answer Correct ? | 0 Yes | 10 No |
Post New Answer View All Answers
What is the benefit of using const for declaring constants?
what are the facialities provided by you after the selection of the student.
What is sizeof return in c?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Explain the difference between null pointer and void pointer.
What is the sizeof () operator?
What is function prototype in c language?
What is malloc return c?
difference between object file and executable file
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Why is c not oop?
Who invented b language?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What do you mean by dynamic memory allocation in c?