main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Answer Posted / krzysztof
People... is itt really so hard to compile that and check? Correct answer, compiled with gcc:
56 93
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Can you please explain the difference between exit() and _exit() function?
What math functions are available for integers? For floating point?
What is null pointer in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Can variables be declared anywhere in c?
What do you mean by a local block?
write a c program to find the sum of five entered numbers using an array named number
What is the advantage of a random access file?
Explain how can I read and write comma-delimited text?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Write the Program to reverse a string using pointers.
praagnovation
What are the general description for loop statement and available loop types in c?
Is null always equal to 0(zero)?