what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / sebestiraj
1,2,3
| Is This Answer Correct ? | 1 Yes | 14 No |
Post New Answer View All Answers
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
what are the advantages of a macro over a function?
What does the && operator do in a program code?
What is pointers in c?
What is the explanation for cyclic nature of data types in c?
Do character constants represent numerical values?
can any one provide me the notes of data structure for ignou cs-62 paper
What does %2f mean in c?
What is the equivalent code of the following statement in WHILE LOOP format?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is c++ used for today?
Can a program have two main functions?
Why shouldn’t I start variable names with underscores?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is the code in while loop that returns the output of given code?