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
Explain what are bus errors, memory faults, and core dumps?
write an algorithm to display a square matrix.
Explain bit masking in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is the difference between abs() and fabs() functions?
What tq means in chat?
What is bubble sort in c?
What was noalias and what ever happened to it?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is the difference between c and python?
What is C language ?
What is the size of a union variable?
Explain how can a program be made to print the line number where an error occurs?
Why c language?
Explain how can I write functions that take a variable number of arguments?