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 / kartik
hi friends upto me....
X=4
Y=3
Z=0
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Do you know the difference between exit() and _exit() function in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Explain how do you print only part of a string?
What are the restrictions of a modulus operator?
what does static variable mean?
What is define directive?
What is null pointer constant?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Explain what is the advantage of a random access file?
Explain what is the benefit of using enum to declare a constant?
What is the sizeof () a pointer?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is the c language function prototype?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....