main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / chandrakala
hai Mannu how it will become 35, 39. the answer is only 11
and 16 ok...
thanks
chandra
| Is This Answer Correct ? | 9 Yes | 10 No |
Post New Answer View All Answers
What is the difference between struct and union in C?
What do you understand by normalization of pointers?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
How can I get the current date or time of day in a c program?
How can I trap or ignore keyboard interrupts like control-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
Where is volatile variable stored?
What is calloc in c?
What is the heap in c?
How can you increase the size of a dynamically allocated array?
What is #error and use of it?
What is call by reference in functions?
What are header files in c programming?