#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
What is the difference between #include and #include 'file' ?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Who is the founder of c language?
Is main is user defined function?
Wt are the Buses in C Language
What is strcmp in c?
What is the use of define in c?
What is file in c preprocessor?
What is #define size in c?
What is the difference between declaring a variable and defining a variable?
Write a progarm to find the length of string using switch case?
What are conditional operators in C?
What is meant by recursion?
is it possible to create your own header files?
What should malloc(0) do?