#include<stdio.h>
void main()
{
int a,b,c;
a=b=c=1;
c=++a || ++b && ++c;
printf("%d\t%d\t%d",a,b,c);
}
Answer Posted / gopinath.j
2 1 1
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is strcmp in c?
Can 'this' pointer by used in the constructor?
What is the difference between exit() and _exit() function?
What is #define in c?
What is calloc in c?
What is the size of a union variable?
Can we change the value of static variable in c?
What is equivalent to ++i+++j?
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
Is c++ based on c?
Why dont c comments nest?
Why does the call char scanf work?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is the best organizational structure?
What's the total generic pointer type?