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 / gaurav
3 3 4
| Is This Answer Correct ? | 1 Yes | 9 No |
Post New Answer View All Answers
What is the return type of sizeof?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
How can I make it pause before closing the program output window?
How #define works?
What is openmp in c?
List the variables are used for writing doubly linked list program.
Explain can you assign a different address to an array tag?
What is c method?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What is a floating point in c?
Who is the main contributor in designing the c language after dennis ritchie?
Subtract Two Number Without Using Subtraction Operator
Explain what is the purpose of "extern" keyword in a function declaration?
What are the uses of a pointer?
How do I swap bytes?