最赞回答 / qq__3559
因为文件hello.c的printLine()函数和test.c中的say()函数是被相互引用的,因此这两个函数都应为外部函数,在两个文件中都必须声明引用。所以小编的答案是错误的!具体代码如下:hello.c文件中:#include <stdio.h>#include "test.c" //引用test.c文件extern void say();void printLine() //这里定义的方法对吗?{ printf("**************\n"); }int m...
2015-12-15
最新回答 / 流浪_老
#include <stdio.h>#define POCKETMONEY 10 //定义常量及常量值int main(){ //小明私自增加零花钱对吗? printf("小明今天又得到%d元零花钱\n", POCKETMONEY); return 0; }#define 是宏定义 定义的东西不要等号和分号
2015-12-15
最新回答 / 越飞越高
#include <stdio.h>int main(){ //这是一首思念家乡的诗 printf("床前明月光,"); printf("疑是地上霜。"); printf("举头望明月,"); printf("低头思故乡。"); /*短短四句诗,写得清新朴素,明白如话。它的内容是单纯的,但同时却又是丰富的。 它是容易理解的,却又是体味不尽的。诗人所没有说的比他已经说出来的要多得多。 它的构思是细致而深曲的,但却又是脱口吟成、浑然无迹的。从这里,...
2015-12-14
最新回答 / Perona
标示符(IDentifier)是指用来标识某个实体的一个符号。这里的标识符,就是自定义的一个名称。c/c++中,标识符就是用来标识变量名、常量名、函数名、数组名、文件名、类名、对象名等。
2015-12-14
最新回答 / 越飞越高
#include<iostream.h>int main(){int a;cin>>a;switch(a){case 0:cout<<"Sunday"<<endl;break;case 1:cout<<"Monday"<<endl;break;case 2:cout<<"Tuseday"<<endl;break;case 3:cout<<"Wednesday"<<endl;break;c...
2015-12-14
最新回答 / 越飞越高
#include<iostream.h>int main(){int a;cin>>a;switch(a){case 0:cout<<"Sunday"<<endl;break;case 1:cout<<"Monday"<<endl;break;case 2:cout<<"Tuseday"<<endl;break;case 3:cout<<"Wednesday"<<endl;break;c...
2015-12-14