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 / arun sebastin
9 9 7 6 6 4
-2 -1 -1 1 1 2
The conceptis simple dothe operation in reverse
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What is scanf () in c?
What are derived data types in c?
how is the examination pattern?
Why c is called a middle level language?
Explain do array subscripts always start with zero?
What is a pragma?
How to set file pointer to beginning c?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
a program that can input number of records and can view it again the record
Explain how can I read and write comma-delimited text?
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
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What do you understand by friend-functions? How are they used?
Where local variables are stored in c?
What do you mean by command line argument?