MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program ?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ float arr[] = {12.4, 2.3, 4.5, 6.7};_x000D_ printf("%d\n", sizeof(arr)/sizeof(arr[0]));_x000D_ return 0;_x000D_ } |
| A. | 5 |
| B. | 4 |
| C. | 6 |
| D. | 7 |
| Answer» C. 6 | |