linux C(hello world) 1.使用vi/vim进行编写代码并保存为hello_world.c.如下: 1 2 3 4 5 6 /* This is my first C program*/ #include <stdio.h> int main(){ printf("Hello World!\n"); return 0; } 2.使用gcc进行编译 gcc hello_world.c -o hello_world /…
操作系统:Redhat6.7 64位[root@Oracle12CDB ~]# more /etc/redhat-release Red Hat Enterprise Linux Server release 6.7 (Santiago) (1)配置/etc/hosts文件[root@Oracle12CDB ~]# hostnameOracle12CDB[root@Oracle12CDB ~]# vim /etc/hosts127.0.0.1 localhost localhost.loca…