main()
{
intx=2,y=6,z=6;
x=y=z;
printf(%d",x)
}
Answer Posted / sorab
error becoz in program written as printf(%d",x)
actually it written like that printf("%d",x);
then the value 6 is print on screen
thanks ....
| Is This Answer Correct ? | 36 Yes | 7 No |
Post New Answer View All Answers
c language interview questions & answer
How do you sort filenames in a directory?
What is 02d in c?
What are the advantages and disadvantages of c language?
What does the file stdio.h contain?
Explain what is a stream?
What are the restrictions of a modulus operator?
What is assignment operator?
What is the use of in c?
What is structure and union in c?
What are the 32 keywords in c?
What is bss in c?
Write a program to implement queue.
What are header files? What are their uses?
What does *p++ do? What does it point to?