请读程序:<br class="markdown_return">#include &lt;stdio.h><br class=

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

请读程序:
#include <stdio.h>
Func(int
A, int b){
Int c;
C=a+b;
Return c;
}
Main( ) {
Int x=6,y=7,z=8,r;
R=func((x--,y++,x+y),z--);
Printf("%d\n", r);
}
上面程序的输出结果是______。

A.11

B.20

C.21

D.31

正确答案是C