以下程序的输出结果是______。<br class="markdown_return">#include &lt;stdio.

分类: C语言开发工程师 发布时间: 2023-11-03 11:13 浏览量: 1

以下程序的输出结果是______。
#include <stdio.h>
#define FUDGE(y) 2.84+y
#define PR(a) printf("%d",(int)(a) )
#define PRINT1(a) PR(a);putchar('\n')
Main()
{ int x=2;
PRINT1(FUDGE(5)*x);
}

A.11

B.12

C.13

D.15

正确答案是B