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
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
What is string constants?
write a program to rearrange the array such way that all even elements should come first and next come odd
Tell me when would you use a pointer to a function?
What is the method to save data in stack data structure type?
WHAT IS PRE POSSESSORS?
What is nested structure?
write a program to display the frequency of each element in a given array in c language
write a c program in such a way that if we enter the today date the output should be next day's date.
Explain what is the difference between functions getch() and getche()?
How to write a C program to determine the smallest among three nos using conditional operator?