#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 / himanshu bhavani
K=0, l=1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
What is meant by gets in c?
What is the need of structure in c?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Explain continue keyword in c
Explain low-order bytes.
What are local static variables? How can you use them?
what do you mean by enumeration constant?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Why is c called a structured programming language?
Explain how does free() know explain how much memory to release?
What is the difference between struct and union in C?
Which are low level languages?
Explain what is the difference between text files and binary files?
What is define c?