main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / rukmanee
output : x=10;
y=16;
| Is This Answer Correct ? | 20 Yes | 7 No |
Post New Answer View All Answers
Why ca not I do something like this?
write a progrmm in c language take user interface generate table using for loop?
Is there anything like an ifdef for typedefs?
What are c identifiers?
What is an array? What the different types of arrays in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Which is better pointer or array?
Why array is used in c?
Why do we write return 0 in c?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Do you know what are the properties of union in c?
Explain About fork()?
List the difference between a While & Do While loops?
What are reserved words?
Explain goto?