main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / pooja
55 59
| Is This Answer Correct ? | 5 Yes | 26 No |
Post New Answer View All Answers
why we wont use '&' sing in aceesing the string using scanf
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
How do I use strcmp?
Why enum is used in c?
Which is an example of a structural homology?
Is it valid to address one element beyond the end of an array?
Explain the Difference between the New and Malloc keyword.
write a program to print largest number of each row of a 2D array
What is the difference between ‘g’ and “g” in C?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is data structure in c programming?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What is a program flowchart?