main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / divyansh
output will be 1o 16
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Can include files be nested?
Is there a way to jump out of a function or functions?
What is the value of uninitialized variable in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Can we replace the struct function in tree syntax with a union?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
i want to know the procedure of qualcomm for getting a job through offcampus
what are non standard function in c
Why is c used in embedded systems?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is a built-in function in C?
Compare array data type to pointer data type
What is call by reference in functions?
What do you mean by scope of a variable in c?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above