1.

What is the output of this C code?#include <stdio.h> #define calc(n, m) n / m + n int main() { int a = -16, b = 13; printf("%d ", calc(a + b, 13)); printf("%d n", calc(-13, 13)); return 0; }

A. Divided by zero exception
B. -14 divided by zero exception
C. -14 -18
D. -18 -14
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs