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
what will happen if you free a pointer twice after allocating memory dynamically ?
Derive the complexity expression for AVL tree?
What is register variable in c language?
What is string function c?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
What are the 4 types of functions?
What is a memory leak in structures? How can we rectify that?
What is the right type to use for boolean values in c?
What is the collection of communication lines and routers called?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
what is void pointer?
What is the use of f in c?