main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Answer Posted / s.srinivasulu
Answer:
x=57
y=94
| Is This Answer Correct ? | 14 Yes | 6 No |
Post New Answer View All Answers
Explain how can I open a file so that other programs can update it at the same time?
What does printf does?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
write a program to concatenation the string using switch case?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Define C in your own Language.
Can an array be an Ivalue?
What is bubble sort in c?
Difference between MAC vs. IP Addressing
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Is null valid for pointers to functions?
What is echo in c programming?
How many parameters should a function have?
What is the correct declaration of main?
What are qualifiers?