今天是学代码自习的第二天,应老师要求来写一篇文章

时光荏苒,来到大学。老师不教c语言,莫名就考上应用专业,嗨~希望以后有可以用到的地方吧,这篇文章就把我第一课hello_world写上来吧(之前把安装系统方法写到link了,这还要再写一篇博客,记录一下吧。)

#include<stdio.h>
int main()
{
    printf("hello world")
    return 0;
}

猜你喜欢

转载自blog.csdn.net/m0_65076192/article/details/121912615