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
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
Discuss the function of conditional operator, size of operator and comma operator with examples.
why do some people write if(0 == x) instead of if(x == 0)?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
What is the use of the function in c?
What is the use of bit field?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
Explain what are the different data types in c?
What is the use of linkage in c language?
How does normalization of huge pointer works?