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 / sudarshan
4 3 1
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain enumerated types in c language?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What is masking?
Explain pointer. What are function pointers in C?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is a spanning Tree?
How will you find a duplicate number in a array without negating the nos ?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Differentiate fundamental data types and derived data types in C.
Explain about block scope in c?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What is spaghetti programming?
Explain what is meant by high-order and low-order bytes?
What is a macro, and explain how do you use it?
Why we use break in c?