MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following function written in the C programming language. The output of the above function on input “ABCD EFGH” is void foo (char *a) { if (*a && *a != ` `) { foo(a+1); putchar(*a); } } |
| A. | ABCD EFGH |
| B. | ABCD |
| C. | HGFE DCBA |
| D. | DCBA |
| Answer» E. | |