在linux虚拟机中怎么用c语言编译输出"hellolinux"。。。求详细过程。。。。

在linux虚拟机中怎么用c语言编译输出"hellolinux"。。。求详细过程。。。。,第1张

打开终端vim

hellolinux.c

按i进入编辑,输入下列代码,保存(按esc之后:wq),gcc

hellolinux.c之后输入./a.out

#include<stdio.h>

int

main()

{

printf("hellolinux!")

return

}

还必须给hellolinux.c这个文件可执行的权限

chmod

+x

hellolinux.c

这个是无限循环的话,用bash可以这样写

#!/bin/bash

while true

do

echo "Hello, Linux!"

sleep 2

done


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/6204295.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-18
下一篇 2023-03-18

发表评论

登录后才能评论

评论列表(0条)

保存