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
What is the use of #include in c?
What language is lisp written in?
With the help of using classes, write a program to add two numbers.
How can I find the modification date and time of a file?
What is the purpose of void pointer?
Explain what is operator promotion?
How do I use strcmp?
Was 2000 a leap year?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
When is a null pointer used?
Explain what is output redirection?
What are structure types in C?
What is d'n in c?
Explain function?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if