#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
What is a null pointer in c?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What are the rules for the identifier?
Explain what are the different data types in c?
What are the types of i/o functions?
Are there constructors in c?
What are loops c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Explain what math functions are available for integers? For floating point?
What is void pointers in c?
What are the types of type qualifiers in c?
Explain can you assign a different address to an array tag?
What are control structures? What are the different types?
What is equivalent to ++i+++j?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.