output for following code???
main()
{
int x=2,y,z;
x*=3+2;
printf("1.%d\n",x);
x*=y=z=4;
printf("2.%d %d %d\n",x,y,z);
x=y==z;
printf("3.%d\n",x);
x==(y=z);
printf("%d",x);
}
Answers were Sorted based on User's Feedback
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
What are high level languages like C and FORTRAN also known as?
Where are the auto variables stored?
Explain union. What are its advantages?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
what is the differance between pass by reference and pass by value.
Write a factorial program using C.
how to print value of e(exp1)up to required no of digits after decimal?
what are far pointers?
How pointer is benefit for design a data structure algorithm?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);