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
What are the types of data structures in c?
Explain threaded binary trees?
What is merge sort in c?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
State the difference between x3 and x[3].
What does char * * argv mean in c?
What is typedef?
Do you know what are the properties of union in c?
What is sizeof int in c?
Explain how do you search data in a data file using random access method?
What is the difference between array and pointer in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is pointer to pointer in c with example?
Do you know null pointer?
What is the size of array float a(10)?