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 can I dynamically allocate arrays?
What are bitwise shift operators in c programming?
Is it cc or c in a letter?
Is array name a pointer?
How do you determine a file’s attributes?
What is the difference between ‘g’ and “g” in C?
What are header files and explain what are its uses in c programming?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is the use of ?
How do you write a program which produces its own source code as output?
Is Exception handling possible in c language?
What are the primitive data types in c?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Mention four important string handling functions in c languages .
What are the different types of C instructions?