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
In which layer of the network datastructure format change is done
Differentiate between new and malloc(), delete and free() ?
Can the sizeof operator be used to tell the size of an array passed to a function?
What is the symbol indicated the c-preprocessor?
What is a pointer and how it is initialized?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Write a program to print fibonacci series using recursion?
Is it better to use a macro or a function?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What are the uses of a pointer?
where are auto variables stored? What are the characteristics of an auto variable?
to find the closest pair
Tell me what is the purpose of 'register' keyword in c language?
what is the difference between class and unio?
What does %p mean?