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
What are the application of void data type in c?
With the help of using classes, write a program to add two numbers.
When was c language developed?
Why & is used in c?
Tell us bitwise shift operators?
Who invented b language?
What is the purpose of 'register' keyword in c language?
How many main () function we can have in a project?
Can a pointer be static?
What is malloc() function?
What are keywords c?
What are types of structure?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.