main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / lucky
correct answer is 57 94
| Is This Answer Correct ? | 16 Yes | 13 No |
Post New Answer View All Answers
What's the best way of making my program efficient?
what is the height of tree if leaf node is at level 3. please explain
Why string is used in c?
What is scanf_s in c?
Explain how do you determine the length of a string value that was stored in a variable?
Why main function is special give two reasons?
Explain what are run-time errors?
What is int main () in c?
What are the types of type qualifiers in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What is null in c?
c language interview questions & answer
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Can we use any name in place of argv and argc as command line arguments?
Is Exception handling possible in c language?