main()
{
int x=5,y=10,z=0;
x=x++ + y++;
y=y++ + ++x;
z=x++ + ++y;
printf("%d%d%d\n",x,y,z);
}
Answer Posted / vaishnavi
x=16,y=28,z=34
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
What is a dynamic array in c?
When should a far pointer be used?
What does the function toupper() do?
writ a program to compare using strcmp VIVA and viva with its output.
Explain what is the difference between null and nul?
What is restrict keyword in c?
Write a program which returns the first non repetitive character in the string?
How macro execution is faster than function ?
What do you mean by keywords in c?
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
Explain how can you tell whether two strings are the same?
What are local static variables? How can you use them?
What does s c mean on snapchat?
How can you be sure that a program follows the ANSI C standard?
Why static is used in c?