【名词&注释】
程序设计(programming)、可读性(readability)、二叉树(binary tree)、系统资源(system resources)、可有可无
[单选题]下列选项中可作为C语言合法常量的是( )。
A. -80
B. -080
C. -8e1.0
D. -80.0e
有以下程序: #include iostream> using namespace std; class count { static int n; public: count ( ) { n++; } static int test() { for (int i = 0; i4; i++ ) n++; return n; } }; int count :: n = 0; int main() { coutcount :: test()" "; count c1, c2; coutcount :: test()end1; return 0; } 执行后的输出结果是( )。