#include <stdio.h>
void main()
{
int i=-1,j=1,k,l;
k=!i&&j;
l=!i||j;
printf ("%d%d",k,l) ;
}
Answer Posted / snehal sawant
just print 01 no space and not assign to k and I
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the disadvantages of a shell structure?
What is self-referential structure in c programming?
difference between object file and executable file
What is a #include preprocessor?
Explain c preprocessor?
Explain how can I convert a string to a number?
Can you tell me how to check whether a linked list is circular?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What are the advantages and disadvantages of a heap?
Why do we need volatile in c?
Is c pass by value or reference?
When should you use a type cast?
Is null valid for pointers to functions?
What is the difference between functions getch() and getche()?
What are the different types of pointers used in c language?