main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / ankit
11 16 is correct ..
value of x is incremented and is saved in memeory and at
the time of display it will be 11,
as in case of y it will be incremented and will store the
incremented value to be displayed for y.
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Explain enumerated types.
What oops means?
What are the advantages of external class?
What is #include stdio h?
What is c token?
What is extern variable in c with example?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What are the benefits of organizational structure?
Write a program to identify if a given binary tree is balanced or not.
all c language question
Are the outer parentheses in return statements really optional?
Differentiate between Macro and ordinary definition.
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Why calloc is better than malloc?
Write a program to generate the Fibinocci Series