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
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 “****”.
Write a program to print fibonacci series without using recursion?
What is size of union in c?
Tell me about low level programming languages.
What is a nested loop?
Explain how do you declare an array that will hold more than 64kb of data?
What is the purpose of main( ) in c language?
What is const volatile variable in c?
int far *near * p; means
What is "Duff's Device"?
What is the purpose of macro in C language?
What is an lvalue in c?
How can I recover the file name given an open stream or file descriptor?
What are loops c?
Why is C language being considered a middle level language?