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
Which is best book for data structures in c?
What is calloc in c?
Which is better pointer or array?
What is data structure in c and its types?
Explain can you assign a different address to an array tag?
define string ?
What are formal parameters?
Write a program to print “hello world” without using semicolon?
What is .obj file in c?
What is the value of c?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Why is main function so important?
What are unions in c?
What does volatile do?
What are the different types of errors?