MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program?_x000D_ #include_x000D_ _x000D_ int main()_x000D_ {_x000D_ typedef int LONG;_x000D_ LONG a=4;_x000D_ LONG b=68;_x000D_ float c=0;_x000D_ c=b;_x000D_ b+=a;_x000D_ printf("%d,", b);_x000D_ printf("%f\n", c);_x000D_ return 0;_x000D_ } |
| A. | 72, 68.000000 |
| B. | 72.000000, 68 |
| C. | 68.000000, 72.000000 |
| D. | 68, 72.000000 |
| Answer» B. 72.000000, 68 | |