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 / aa

3 3 1

Is This Answer Correct ?    12 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#include { printf("Hello"); } how compile time affects when we add additional header file .

1424


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

813


What is structure padding and packing in c?

623


regarding pointers concept

1575


How can I find out how much free space is available on disk?

629






the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

647


What is new line escape sequence?

810


Explain what is meant by 'bit masking'?

644


What are register variables? What are the advantage of using register variables?

687


application attempts to perform an operation?

1495


Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix

1518


What are c preprocessors?

679


Why can’t constant values be used to define an array’s initial size?

836


Add Two Numbers Without Using the Addition Operator

353


What is the c language function prototype?

646