What will be the output of
x++ + ++x?
Answer Posted / srinivas
for this what is the input value of x.First of all we have
to give the input value of x.
if x = 1 then answer would be
main();
int x=1,y.
y = x++ + ++x.
printf /n'%d',y.
here y = 3
| Is This Answer Correct ? | 34 Yes | 30 No |
Post New Answer View All Answers
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What are the three constants used in c?
What is the use of a semicolon (;) at the end of every program statement?
What is operator promotion?
Who invented b language?
What is a pragma?
What are types of structure?
Explain a pre-processor and its advantages.
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
Explain what is the stack?
explain how do you use macro?
Do you know what are bitwise shift operators in c programming?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
Is Exception handling possible in c language?