码迷,mamicode.com
首页 > 编程语言 > 详细

linux中开发c语言程序

时间:2018-01-30 16:28:28      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:stdio.h   示例   lin   file   blog   int   body   std   运行   

新建并执行c语言

(1)vim test.c  新建c语言源文件并打开,编写代码(i 进入插入模式)

(2)gcc test.c -o test.out  编译test.c文件成test.out文件

(3)./test.out  运行test.out文件

示例:

#include <stdio.h>

int main(int argv,char* argc[])
{
  printf("the argv is %d\n",argv);
  int i;
  for(i=0;i<argv;i++){
    printf("argc[%d]is %s\n",i,argc[i]);
  }
  return 0;
}

 

对于多个文件采用:Makefile编译

linux中开发c语言程序

标签:stdio.h   示例   lin   file   blog   int   body   std   运行   

原文地址:https://www.cnblogs.com/wangzhaofang/p/8384274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!