#include <stdio.h>
void main()
{
int i=-1,j=1,k,l;
k=!i&&j;
l=!i||j;
printf ("%d%d",k,l) ;
}
Answers were Sorted based on User's Feedback
Answer / snehal sawant
just print 01 no space and not assign to k and I
| Is This Answer Correct ? | 1 Yes | 0 No |
what is the difference between definition and declaration? give me some examples.
mplementation of stack using any programing language
What is getch c?
Is boolean a datatype in c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
How can you be sure that a program follows the ANSI C standard?
which is faster execution: loops or recursion?
What is wild pointer in c?
Explain union.
How can you read a directory in a C program?
write a program to create a sparse matrix using dynamic memory allocation.
What is volatile variable how do you declare it?