What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / navi
1 1 1
| Is This Answer Correct ? | 2 Yes | 14 No |
Post New Answer View All Answers
what is the syallabus of computer science students in group- 1?
What is the difference between malloc() and calloc() function in c language?
Which node is more powerful and can handle local information processing or graphics processing?
What is declaration and definition in c?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is the argument of a function in c?
What is the advantage of using #define to declare a constant?
Write a program of advanced Fibonacci series.
Explain the properties of union.
What is the difference between test design and test case design?
What is string function c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Does c have circular shift operators?
Write a function that will take in a phone number and output all possible alphabetical combinations
How can I do graphics in c?