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 / guest
431
| Is This Answer Correct ? | 13 Yes | 15 No |
Post New Answer View All Answers
Why isn't any of this standardized in c? Any real program has to do some of these things.
Are bit fields portable?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What are 'near' and 'far' pointers?
In which header file is the null macro defined?
Are the outer parentheses in return statements really optional?
What is the stack in c?
Write a program to print factorial of given number without using recursion?
How are structure passing and returning implemented?
How can I change their mode to binary?
What does the message "automatic aggregate intialization is an ansi feature" mean?
How can I pad a string to a known length?
Here is a neat trick for checking whether two strings are equal
Explain how can a program be made to print the name of a source file where an error occurs?