what is the output of the following program?
#include<stdio.h>
void main()
{
int x=4,y=3,z;
z=x-- -y;
printf("\n%d %d %d",x,y,z);
}
Answer Posted / amit
331
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
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
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is your stream meaning?
praagnovation
What kind of structure is a house?
When should volatile modifier be used?
Why static variable is used in c?
Did c have any year 2000 problems?
What is variable initialization and why is it important?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What do you mean by Recursion Function?
How can you tell whether a program was compiled using c versus c++?