#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 && in c programming?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
how will you write a program on linked lists using JAVA programming???????????
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
How to receive strings with spaces in scanf()
write program on arrays
Why is it important to memset a variable, immediately after allocating memory to it ?
In a switch statement, explain what will happen if a break statement is omitted?
Write a program to print all permutations of a given string.
Is c dynamically typed?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }