What is the output of this C code?
#include <stdio.h> main() { if (sizeof(int) > -1) printf("True"); else printf("False"); }
a) True
b) False
Answers
Answered by
2
Correct Option : b) False
Output:
$ cc pgm.c
$ a.out
False
Answered by
10
heya..
here is you answer..
The correct option is b) False.
What is the output of this C code?
$cc pgm.c
$ a.out
It may help you...☺☺
Similar questions