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 / aa
3 3 1
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
In C, What is the #line used for?
What are the complete rules for header file searching?
How can you determine the size of an allocated portion of memory?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What are the 5 data types?
i got 75% in all semester am i eligible for your company
What is static memory allocation?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What are the uses of a pointer?
Explain zero based addressing.
What are identifiers c?
What are the 4 data types?
What is difference between union All statement and Union?
What is the size of enum in bytes?
Why enum is used in c?