Linux下HelloWorld

Linux环境  Linux charles-VirtualBox 4.4.0-21-generic #37-Ubuntu SMP Mon Apr 18 18:34:49 UTC 2016 i686 i686 i686 GNU/Linux

hello1.c

/* hello1.c
 * purpose show the minimal calls needed to use curses
 * outline  initialize, draw stuff, wait for input, quit
 */


#include <stdio.h>
//#include <curses.h>


int main()
{
printf("Hello World");
puts("DDDD");
// initscr() ; /* turn on curses */

/* send requests */
// clear(); /* clear screen */
// move(10,20); /* row10,col20 */
// addstr("Hello, world"); /* add a string */
// move(LINES-1,0); /* move to LL */


// refresh(); /* update the screen */
// getch(); /* wait for user input */


// endwin(); /* turn off curses */
return 0;
}


终端跑到 hello1.c   同目录下  之后 输入命令   gcc hello1.c -o hello1


之后会发现同目录下出现 hello1的这个可执行文件
之后  终端输入 ./hello1
运行文件



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值