main()
{
int i = -3,j=2,k=0,m;
m= ++i || ++j && ++k;
printf("%d%d%d",i,j,k,m);
}
Answer Posted / jeke kumar gochhayat
i=-2
j=3
k=1
m=1
| Is This Answer Correct ? | 11 Yes | 12 No |
Post New Answer View All Answers
Do variables need to be initialized?
Which header file is essential for using strcmp function?
Can we change the value of #define in c?
Explain the use of 'auto' keyword
What are the advantages of using linked list for tree construction?
What are the disadvantages of external storage class?
Why c language is called c?
Why c language?
In C, What is the #line used for?
int far *near * p; means
What are the advantages of using macro in c language?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
How do I use void main?
Why c is called a middle level language?
How many types of sorting are there in c?