x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answer Posted / vijoeyz
y != z.
So, y == z is 0.
x = 0.
Best,
Vijay Zanvar,
Home Page - http://geocities.com/vijoeyz/
| Is This Answer Correct ? | 5 Yes | 30 No |
Post New Answer View All Answers
Describe the header file and its usage in c programming?
write a program to print largest number of each row of a 2D array
What is assignment operator?
Explain can static variables be declared in a header file?
What is the sizeof () a pointer?
How to Throw some light on the splay trees?
writ a program to compare using strcmp VIVA and viva with its output.
What is the role of this pointer?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is a struct c#?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Explain c preprocessor?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is multidimensional arrays