Page 1 of 1

What is the output of this C code?

Posted: Wed Jul 13, 2022 7:54 pm
by answerhappygod
#include <stdio.h> main() { if (sizeof(int) > -1) printf("True"); else printf("False"); }
a) True
b) False