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 is scope rule in c?
Write a routine that prints out a 2-D array in spiral order!
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
write a program to find the frequency of a number
Describe the difference between = and == symbols in c programming?
what is the full form of c language
give an example of type casting by a simple c program
how to find your architecture is LittleEndian or BigEndian?
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
Why is this loop always executing once?
What is a method in c?
What is the difference between typedef struct and struct?