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
SORRY YHE OUTPUT WILL BE 3 3 1
| Is This Answer Correct ? | 20 Yes | 4 No |
Post New Answer View All Answers
What is the use of getchar functions?
How do I convert a string to all upper or lower case?
What is the use of parallelize in spark?
What does *p++ do?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is difference between structure and union?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
What is the sizeof () a pointer?
What are called c variables?
Why header file is used in c?
Explain main function in c?
How to delete a node from linked list w/o using collectons?
What are conditional operators in C?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?