#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 is operator promotion?
What is malloc return c?
Are there constructors in c?
Is c a great language, or what?
How are strings stored in c?
What is structure pointer in c?
What is difference between scanf and gets?
Explain what are the different file extensions involved when programming in c?
What the different types of arrays in c?
shorting algorithmS
What is the significance of an algorithm to C programming?
Why is it usually a bad idea to use gets()? Suggest a workaround.
For what purpose null pointer used?
Who invented b language?
Why do we use int main instead of void main in c?