MCQOPTIONS
Saved Bookmarks
| 1. |
Output? #include int main() { int c = 5, no = 10; do { no /= c; } while(c--); printf ("%dn", no); return 0; } |
| A. | 1 |
| B. | Runtime Error |
| C. | Compiler Error |
| Answer» C. Compiler Error | |