what is the Output?
int a=4 b=3;
printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++);
printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Answer Posted / malith
9,10,7,6,10,4-2,-1,-3,1,-3,-3
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Is javascript written in c?
Write a program to know whether the input number is an armstrong number.
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What are the 4 types of programming language?
Explain what is the benefit of using const for declaring constants?
What are types of preprocessor in c?
What are the benefits of organizational structure?
What is void main () in c?
Do you have any idea about the use of "auto" keyword?
How can I list all of the predefined identifiers?
What is the use of bit field?
Why can arithmetic operations not be performed on void pointers?
What are the various types of control structures in programming?
What is time complexity c?
What is derived datatype in c?