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
Explain is it valid to address one element beyond the end of an array?
Explain the priority queues?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Calculate 1*2*3*____*n using recursive function??
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What are the uses of null pointers?
how to introdu5ce my self in serco
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Which built-in library function can be used to match a patter from the string?
What is the difference between constant pointer and constant variable?
What is structure and union in c?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
What is main () in c?
Explain a pre-processor and its advantages.
Why do we use int main instead of void main in c?