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

printf("%d%d%d",i,j,k,m);

it has only 3 %d.
So, it will print only 3 value.

Is This Answer Correct ?    9 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above

601


Explain union. What are its advantages?

613


What is void main ()?

606


How can I list all of the predefined identifiers?

576


difference between object file and executable file

6090






What is the purpose of 'register' keyword in c language?

626


How is a macro different from a function?

652


How can I find the modification date of a file?

698


There seem to be a few missing operators ..

614


What does the function toupper() do?

651


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

4983


What is an operator?

656


What is void c?

560


what is the format specifier for printing a pointer value?

609


What is a memory leak? How to avoid it?

570