main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / kalai
10,15
| Is This Answer Correct ? | 1 Yes | 22 No |
Post New Answer View All Answers
Explain how can you restore a redirected standard stream?
How is actual parameter different from the formal parameter?
Why c is called a middle level language?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
Write a program to find factorial of a number using recursive function.
What do you mean by keywords in c?
Explain what are linked list?
How can I get random integers in a certain range?
How are 16- and 32-bit numbers stored?
How do you use a 'Local Block'?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is binary tree in c?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is volatile variable in c with example?