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 / aa
3 3 1
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
Can a pointer be static?
If the size of int data type is two bytes, what is the range of signed int data type?
Which is better malloc or calloc?
explain what are actual arguments?
What is bubble sort technique in c?
What is the data segment that is followed by c?
Explain how do you generate random numbers in c?
What is the purpose of realloc()?
What is the difference between text and binary modes?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What are the 5 types of inheritance in c ++?
What is function in c with example?
What is double pointer in c?
What is meant by operator precedence?
Why c is called a middle level language?