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


Please Help Members By Posting Answers For Below Questions

How can I implement sets or arrays of bits?

607


Why c language?

648


Who is the main contributor in designing the c language after dennis ritchie?

554


What is function prototype in c language?

617


Why is this loop always executing once?

617






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?

1591


What does #pragma once mean?

689


I have a varargs function which accepts a float parameter?

579


Is there sort function in c?

579


Are there constructors in c?

598


Is there any possibility to create customized header file with c programming language?

626


What are the types of i/o functions?

684


What are the basic data types associated with c?

818


What does 2n 4c mean?

721


What is the difference between if else and switchstatement

1313