main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / nirmala
11,15
| Is This Answer Correct ? | 3 Yes | 19 No |
Post New Answer View All Answers
about c language
How many data structures are there in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is the difference between c and python?
What is %g in c?
what is recursion in C
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What are the back slash character constants or escape sequence charactersavailable in c?
What is pointer to pointer in c with example?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
What do you mean by dynamic memory allocation in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
i have a written test for microland please give me test pattern