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
What does *p++ do? What does it point to?
What is main () in c language?
What is the purpose of 'register' keyword?
Write a program to identify if a given binary tree is balanced or not.
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
How important is structure in life?
What is a program?
How many identifiers are there in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What will be the outcome of the following conditional statement if the value of variable s is 10?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What are volatile variables in c?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is memory leak in c?