#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 |
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
A program to allow an input operand and operator from the operator and read on the display and output operand.
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
What is calloc()?
Famous puzzles which are generally asked by companies during interviews ?
what is call by value and call by reference
Can a pointer be static?
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
i want to know aptitude questions,technical questions
What does %d do in c?