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 / vignesh1988i
the output will be 3 3 0
thank u
| Is This Answer Correct ? | 5 Yes | 18 No |
Post New Answer View All Answers
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
cavium networks written test pattern ..
What is the use of gets and puts?
What is the right way to use errno?
Write a program to print factorial of given number without using recursion?
Which is better malloc or calloc?
I came across some code that puts a (void) cast before each call to printf. Why?
What are the types of i/o functions?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What is the difference between ++a and a++?
Does * p ++ increment p or what it points to?
Explain what is the difference between functions abs() and fabs()?
What is a string?
Explain what are the __date__ and __time__ preprocessor commands?