main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / chandrakala
hai Mannu how it will become 35, 39. the answer is only 11
and 16 ok...
thanks
chandra
| Is This Answer Correct ? | 9 Yes | 10 No |
Post New Answer View All Answers
Is c easy to learn?
What is the difference between fread buffer() and fwrite buffer()?
What is c basic?
How can I implement sets or arrays of bits?
Can we replace the struct function in tree syntax with a union?
What are formal parameters?
What are the characteristics of arrays in c?
Explain what is the benefit of using const for declaring constants?
What are qualifiers and modifiers c?
What does static variable mean in c?
Implement bit Array in C.
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Which is the best website to learn c programming?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is typedef?