-
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;
}
-
- Divided by zero exception
- -14 divided by zero exception
- -14 -18
- -18 -14
- None of these
Correct Option: D
-18 -14