Solve This (? + ? + ?=30)
If 1111=R, 2222=T, 3333=E, 4444=N Then 5555=?
Guess the Hindi Muhawara from the following whatsapp Emoticons?
Sweet, Medicine, Film, Girl, City, Car, Place, Doggy all are name same, guess which word it is?
A girl is blind, deaf, dumb and uneducated too. A boy loves her. How would he propose without touching her?
Four Question, One Answer: One River Name, One Flower Name, One Film Name, One Actress Name?
Guess me who am I, I am the first on earth, the second in heaven...
Which Indian cricketer is known as "Brown Bradman"?
What was Shoemaker-Levy 9, that crashed into Jupiter in 1994?
Bernard Silver and Norman Woodland pioneered and were the first, in 1952, to patent what?
1.
main() { printf("%x",-1<<4); }
2.
main() { int i=10; i=!i>14; Printf ("i=%d",i); }
Depending on the machine implementation it will result in FFFFFF0 (for 32bit ) or FFF0 (16 bit )
I = 0 . 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).
#include<stdio.h> int main() { int n; for(n = 7; n!=0; n--) printf("n = %d", n--); getchar(); return 0; }
input: one two three
output: three two one
void main(){ int i=320; char *ptr=(char *)&i; printf("%d",*ptr); }
Please provide your explanation also?
#include<stdio.h> main() { int a=10; printf("%d\n",a++==a); }
Output should be 1 but it is coming as 0, Can anyone please explain?