MCQOPTIONS
Saved Bookmarks
| 1. |
Point out the error in the following program. #include int main() { fprintf("Compscibits"); printf("%.ef", 2.0); return 0; } |
| A. | Error: unknown value in printf() statement |
| B. | Error: in fprintf() statement |
| C. | No error and prints "Compscibits" |
| D. | No error and prints "2.0" |
| Answer» C. No error and prints "Compscibits" | |