void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / akshay
442
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is break in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
how to make a scientific calculater ?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
How do you convert strings to numbers in C?
Does c have an equivalent to pascals with statement?
What does %p mean c?
What functions are in conio h?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What is c language used for?
what is the basis for selection of arrays or pointers as data structure in a program
Can you please explain the difference between malloc() and calloc() function?
Why do we need volatile in c?
How do you construct an increment statement or decrement statement in C?