Kizspy | Question: 8
(Choose 1 answer)
Given the following code snippet:
#include <stdio.h>
#define MONTHS_IN_YEAR 12
int main() {
const int WORKING DAYS = 22;
printf("%d", MONTHS_IN_YEAR);
printf("%d", WORKING DAYS);
return 0;
Choose the correct statement:
A. The output will be: 12 22
B. No output
C. Compile error
D. Runtime error