项目作者: afeiship

项目描述 :
C lang notes.
高级语言: C
项目地址: git://github.com/afeiship/clang-notes.git
创建时间: 2018-01-27T17:09:28Z
项目社区:https://github.com/afeiship/clang-notes

开源协议:

下载


clang-notes

C lang notes.

resources:

hello

  1. #include <stdio.h>
  2. int main(){
  3. printf("hello world\n");
  4. return 0;
  5. }

compile:

  1. gcc hello.c

run

  1. ./a.out