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
What are the __date__ and __time__ preprocessor commands?
Explain what is a 'locale'?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Do string constants represent numerical values?
How can you be sure that a program follows the ANSI C standard?
all c language question
What is malloc calloc and realloc in c?
What is && in c programming?
Does c have circular shift operators?
in iso what are the common technological language?
Which header file is essential for using strcmp function?
Why calloc is better than malloc?
What happens if a header file is included twice?
Can you tell me how to check whether a linked list is circular?
What are the types of c language?