main()
{
int i=10;
i=!i>14;
Printf ("i=%d",i);
}
Answer / susie
Answer :
i=0
Explanation:
In the expression !i>14 , NOT (!) operator has
more precedence than ‘ >’ symbol. ! is a unary logical
operator. !i (!10) is 0 (not of true is false). 0>14 is
false (zero).
| Is This Answer Correct ? | 71 Yes | 4 No |
main() { int i =0;j=0; if(i && j++) printf("%d..%d",i++,j); printf("%d..%d,i,j); }
void main() { int x,y=2,z; z=(z*=2)+(x=y=z); printf("%d",z); }
#include <stdio.h> #define a 10 main() { #define a 50 printf("%d",a); }
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
/*what is the output for*/ void main() { int r; printf("Naveen"); r=printf(); getch(); }
main() { float me = 1.1; double you = 1.1; if(me==you) printf("I love U"); else printf("I hate U"); }
main() { char a[4]="HELLO"; printf("%s",a); }
Write a program that find and print how many odd numbers in a binary tree
Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?
how to print 1 2 3 4 5 6 7 8 9 10 9 8 7 6 5 4 3 2 1 using any loop(for or while) only once(only 1 loop) and maximum 2 variables using C.
19 Answers Cap Gemini, Infosys,
how can i search an element in an array
2 Answers CTS, Microsoft, ViPrak,
#ifdef something int some=0; #endif main() { int thing = 0; printf("%d %d\n", some ,thing); }