#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 / sandeep

k=0,l=1

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Between macros and functions,which is better to use and why?

1572


Who invented b language?

924


Why is c not oop?

541


a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none

727


What is variables in c?

612






What is variable declaration and definition in c?

505


What is the purpose of the statement: strcat (S2, S1)?

644


What is function prototype in c with example?

583


Can you write a programmer for FACTORIAL using recursion?

618


What is clrscr ()?

641


What is sizeof array in c?

597


What is methods in c?

649


Why is c faster?

596


What is the difference between malloc() and calloc() function in c language?

609


using for loop sum 2 number of any 4 digit number in c language

1738