#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 / himanshu bhavani
K=0, l=1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can I invoke another program or command and trap its output?
What is the need of structure in c?
Is there anything like an ifdef for typedefs?
Why do we use return in c?
What is scope of variable in c?
What is fflush() function?
What is the explanation for prototype function in c?
Explain what is #line used for?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Why we use int main and void main?
What is a lvalue
What is the purpose of realloc()?
How can you invoke another program from within a C program?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What does nil mean in c?