main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / vijay
56
93
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is malloc calloc and realloc in c?
What does %c do in c?
What is the difference between null pointer and wild pointer?
How can you determine the maximum value that a numeric variable can hold?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
a c code by using memory allocation for add ,multiply of sprase matrixes
Write a program to check prime number in c programming?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
#include
while initialization of array why we use a[][2] why not a[2][]...?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
How does free() know explain how much memory to release?
explain what are pointers?