What will be the output of
x++ + ++x?
Answer Posted / manojkumar
I have worked out this.in turbo c3
#include<stdio.h>
#include<conio.h>
void main()
{ clrscr();
int x,y;
x=4;
printf("%d",x++ + ++x);
getch();
}
output:
10
| Is This Answer Correct ? | 23 Yes | 5 No |
Post New Answer View All Answers
Explain how do you determine the length of a string value that was stored in a variable?
Is it valid to address one element beyond the end of an array?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What is the use of getch ()?
What is getche() function?
Write a program to reverse a linked list in c.
Write a program to print ASCII code for a given digit.
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What are the 5 organizational structures?
What is 2 d array in c?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What does it mean when the linker says that _end is undefined?
What is scope rule of function in c?
What are preprocessor directives in c?
What is LINKED LIST? How can you access the last element in a linked list?