main()
{
int i = -3,j=2,k=0,m;
m= ++i || ++j && ++k;
printf("%d%d%d",i,j,k,m);
}

Answer Posted / mayur dharmik

output
-220

i.e,
i=-2, j=2, k=0.
it will print only 1st three value.

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between array and linked list in c?

596


What is structure packing in c?

602


Why does not c have an exponentiation operator?

626


What is "Duff's Device"?

699


Can true be a variable name in c?

555






What is string function c?

561


What is the purpose of main( ) in c language?

615


How can I find out if there are characters available for reading?

640


write a c program in such a way that if we enter the today date the output should be next day's date.

1677


List the different types of c tokens?

621


What would be an example of a structure analogous to structure c?

573


What are global variables and how do you declare them?

616


Write a program to implement queue.

664


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

599


What is zero based addressing?

707