#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


Please Help Members By Posting Answers For Below Questions

What are control structures? What are the different types?

604


What is volatile c?

529


A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor

626


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

706


What is structure in c language?

627






What is difference between %d and %i in c?

698


how is the examination pattern?

1601


What is the meaning of typedef struct in c?

602


What is meant by initialization and how we initialize a variable?

590


how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?

1502


How will you declare an array of three function pointers where each function receives two ints and returns a float?

787


What is the ANSI C Standard?

782


What is the concatenation operator?

616


What header files do I need in order to define the standard library functions I use?

543


What are the modifiers available in c programming language?

745