0
What is the output explain
#include<stdio.h> int main() { if(7&8) printf("Honesty"); if(~7&0x000f==8) printf("is the best policy \n"); }
2 Answers
0
great answer is here :
https://www.sololearn.com/Discuss/2994377
#include<stdio.h> int main() { if(7&8) printf("Honesty"); if(~7&0x000f==8) printf("is the best policy \n"); }