int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf('1'); else printf('2'); } a) 1 b) 8 c) 2 d) 4
Answers
Answered by
1
a)1 because the program prints 1 if the size is more than or equal to -1
Similar questions