阅读下面程序,则执行后的输出结果为
( )

第1题:
阅读下面程序段,则执行后输出的结果是 #include"stdio.h" main() { char fun(char,int); char a='A'; int b=13; a=fun(a,b); putchar(a);} char fun(char a,int b) { char k; k=a+b; return k;}
A.A
B.M
C.N
D.L
第2题:
阅读下面程序,则执行后的结果是( )。
A.tomeetme
B.tmem
C.oete
D.tome
第3题:
阅读下面程序,则执行后的结果为_____ #include <stdio.h> int main() { char *str="abcdefghijklmnopq"; while(*str++!=′e′); printf("%cn",*str); }
第4题:
阅读下面程序,则执行后的输出结果为
#include<stdio.h>
fun(int a,int b)
{
int s;
s=a*b/2;
printf("%d\n",s);
}
main()
{
int a=10,b=16;
fun(a,b);
}
A.10
B.16
C.160
D.80
第5题:
阅读下面程序段,则执行后的结果为( )。
A.64
B.8
C.56
D.0