main()
{
intx=2,y=6,z=6;
x=y=z;
printf(%d",x)
}
Answer Posted / dhananjay
x=6 beacuse x will contain the latest value.
| Is This Answer Correct ? | 21 Yes | 14 No |
Post New Answer View All Answers
What are the 5 types of organizational structures?
What are the basic data types associated with c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Can you please explain the difference between malloc() and calloc() function?
What does sizeof int return?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What are the properties of union in c?
What is double pointer?
When do we get logical errors?
What are pointers? What are stacks and queues?
Write a program for finding factorial of a number.
Write a program to print numbers from 1 to 100 without using loop in c?
What is difference between arrays and pointers?
Explain the priority queues?
What are # preprocessor operator in c?