我在 Windows 7 操作系统上使用 DEV GNU c++ 编译器。我需要知道如何编译具有多个源文件的程序。这是示例,
#FILE1
void f1()
{
printf("this is another file under same program");
}
#FILE2
int main()
{
f1();
return 0;
}
实际上我需要这个来测试静态的外部类说明符如何与多个文件一起使用。所以现在只有我必须学习如何在 C 中的单个程序中处理多个文件。
谢谢提前