What is the output of this C code? int main() { if (7 & 8) printf("Honesty"); if ((~7 & 0x000f) == 8) printf("is the best policy\n"); }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
None.
Be The First To Comment