What will be the output of the following C code on a 32-bit system?
Posted: Wed Jul 13, 2022 7:54 pm
#include <stdio.h> void main() { char *a[10] = {"hi", "hello", "how"}; printf("%d\n", sizeof(a)); }
a) 10
b) 13
c) Run time error
d) 40
a) 10
b) 13
c) Run time error
d) 40