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);
}
Post New Answer View All Answers
How is a null pointer different from a dangling pointer?
What is the difference between pure virtual function and virtual function?
Is c weakly typed?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Explain the binary height balanced tree?
How do we print only part of a string in c?
how could explain about job profile
Differentiate between a for loop and a while loop? What are it uses?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What tq means in chat?
What is union and structure in c?
What is #line in c?
What is a file descriptor in c?
What type is sizeof?
What is wrong with this code?