main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / anjana
57
59
| Is This Answer Correct ? | 11 Yes | 34 No |
Post New Answer View All Answers
Is a pointer a kind of array?
What does do in c?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is %d called in c?
How can you convert integers to binary or hexadecimal?
How can I get the current date or time of day in a c program?
How many levels deep can include files be nested?
using only #include
How we can insert comments in a c program?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is console in c language?
Explain about block scope in c?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is a constant?
Is there sort function in c?