单项选择题

以下选项中合法的用户标识符是( )。

A.long
B._2Test
C.3Dmax
D.A.dat
<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序:int fa(int x){ return x *x;}int fb(int x){ return x *x *x;}int f(int( *f1)( ),int( *f2)( ),int x){ return f2(x)-f1(x);}main( ){ int i;i=f(fa,fb,2);printf( %d n ,i);}程序运行后的输出结果是( )。
A.-4
B.1
C.4
D.8
单项选择题
若要说明一个类型名STP,使得定义语句STP s;等价于char *s;,以下选项中正确的是
A. typedef STP char *s;
B. typedef *char STP;
C. typedef STP *char;
D. typedef char* STP ;
相关试题
  • E-mail地址由用户名和域名两部分组成,这...
  • 执行以下程序后,输出’’#’’号的个数是...
  • 设有定义:FILE*fw;,请将以下打开文件的...
  • 以下程序运行后的输出结果是【 】int a=...
  • 以下程序的输出结果是【 】。#define MC...