what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / 123ghouse@gmail.com
3,2,2;
| Is This Answer Correct ? | 21 Yes | 8 No |
Post New Answer View All Answers
What do you mean by command line argument?
How would you obtain the current time and difference between two times?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Which programming language is best for getting job 2020?
How do you define a function?
What is indirection in c?
Explain the bubble sort algorithm.
What are linked lists in c?
List the difference between a "copy constructor" and a "assignment operator"?
Can we change the value of #define in c?
Why is structure padding done in c?
Why is c so important?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What are different types of variables in c?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters