以下为一个简单的C语言实例,直接用gcc编译。

  1. cd /root/
  2. mkdir cworkspace
  3. cd cworkspace
  4. gedit hello.c
  5. #弹出文本编辑窗口,若没有则用vi或者vim编辑吧
  6. #编程完毕,代码自定义,注意C的先定义后使用,比如loop for里的临时变量i也要提前声明。
  7. gcc hello.c -o “别名”     #编译
  8. ./”别名”                         #运行
  9. Done
#include<stdio.h>
void main(){
int i=0;
int j=0;
printf(“乘法口诀表\n”);
for(i=1;i<=9;i++){
for(j=1;j<=i;j++){
printf(“%d*%d=%d\t”,j,i,(i*j));
}
printf(“\n”);
}
}

以下为g++编译c++程序

  1. gedit sum.cxx
  2. #弹出文本编辑窗口,若没有则用vi或者vim编辑吧
  3. #编程完毕
  4. g++ sum.cxx -o “别名”      #编译
  5. ./”别名”                               #运行
#include<iostream>
using namespace std;
int main(){
int a=0,b=0,sum=0;
cout<<“请输入 a:\t”;
cin>>a;
cout<<“请输入 b:\t”;
cin>>b;
sum=a+b;
cout<<“a+b=”<<sum<<endl;
return 0;
}

gmake编程基础

1、产生的背景
在大型的开发项目中,通常有几十到几百个源文件,如果仍用gcc命令进行手工编译的话,那几乎是不可能的,因此有了gmake工具。
2、命令格式
gmake或make [options] [target] …
其中:
make和gmake几乎等价,可以相互取代,以后只提gmake。
[]表示可选项。
[opitions]是参数,以-或–开头。
[target]…是目标或要编译和连接的文件名。
3、获得帮助
gmake -help 或
info gmake 或
man make(详细)