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 / amit
331
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Is c high or low level?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Why main is used in c?
What is pointer to pointer in c?
What are the 5 elements of structure?
What is the purpose of macro in C language?
What is indirection? How many levels of pointers can you have?
What should malloc(0) do?
why do some people write if(0 == x) instead of if(x == 0)?
Is linux written in c?
What does char * * argv mean in c?
find out largest elemant of diagonalmatrix
Explain the advantages and disadvantages of macros.