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
How can I call a function with an argument list built up at run time?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What are reserved words with a programming language?
What is pass by value in c?
How can you pass an array to a function by value?
What is the right way to use errno?
Why do we need arrays in c?
Write a program to print “hello world” without using semicolon?
Write a code to generate a series where the next element is the sum of last k terms.
Is c# a good language?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
write a program to display all prime numbers
What 'lex' does?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
what is the structure pointer?