attempt to open /foo/gcc-6.3.0/lib/gcc/x86_64-redhat-linux/6.3.0/libm.a failed
attempt to open /foo/gcc-6.3.0/lib/gcc/x86_64-redhat-linux/6.3.0/../../../x86_64-r
作业要求:编写一个由两个源文件组成的程序。第一个(Main.c)包含main()函数,并为变量i赋值。第二个源文件(Print.c)将i乘以2并打印出来。Print.c包含可从main()调用的函数print()。#include <stdio.h>using namespace std;
int i = 2;
print(i);
}