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
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is %s and %d in c?
What is a file descriptor in c?
Write a program which returns the first non repetitive character in the string?
Explain how do you override a defined macro?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Which type of language is c?
Describe the modifier in c?
Explain the use of #pragma exit?
How to declare pointer variables?
What is the size of enum in bytes?
What is getche() function?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Can the curly brackets { } be used to enclose a single line of code?
What extern c means?