MCQOPTIONS
Saved Bookmarks
| 1. |
Can the following C code be compiled successfully?#include <stdio.h> struct A { int p; char q; float r; }; int main() { struct A t = {.q = 15, .r = 13, .p = 23}; printf("%f n", t.r); } |
| A. | Depends on the standard |
| B. | No |
| C. | Depends on the platform |
| D. | Yes |
| E. | None of these |
| Answer» E. None of these | |