博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c/c++ helloworld
阅读量:6973 次
发布时间:2019-06-27

本文共 1408 字,大约阅读时间需要 4 分钟。

开始:

c:

#include    
#include
#include
#include
#include
int main ( int argc, char *argv[] ) { printf ("\nProgram %s\n\n", argv[0] ); return EXIT_SUCCESS; } /* ---------- end of function main ---------- */

c++:

#include        
#include
#include
#include
#include
using namespace std; int main ( int argc, char *argv[] ) { cout << "\nProgram " << argv[0] << endl << endl; return EXIT_SUCCESS; } // ---------- end of function main ----------

 

visual studio 

#include 
using namespace std; int main() {
cout<<"hello world!"

 

转载地址:http://tzrsl.baihongyu.com/

你可能感兴趣的文章
类的扩充 js中面向对象的技术
查看>>
css 3D动画
查看>>
一名3年工作经验的java程序员应该具备的职业技能
查看>>
机器喵之红黑树(一)
查看>>
短网址(short URL)系统的原理及其实现
查看>>
azkaban 安装
查看>>
【290天】我爱刷题系列049(2017.11.22)
查看>>
java重写equals及hashcode方法
查看>>
【253天】我爱刷题系列(12)
查看>>
深入理解 js this 绑定 ( 无需死记硬背,尾部有总结和面试题解析 )
查看>>
[js高手之路]js单页hash路由原理与应用实战
查看>>
翻译webpack3.5.5 - code splitting - 上半部分
查看>>
列表用法
查看>>
Vue SPA 项目在 Amazon S3 部署小技巧
查看>>
数据段、数据报、数据包、帧的区别与联系
查看>>
如何迅速分析出系统CPU的瓶颈在哪里?
查看>>
Oracle推出轻量级Java微服务框架Helidon
查看>>
腾讯云小微激活硬件生态,携合作产品正式亮相
查看>>
记TensorFlow项目开源一周年
查看>>
「镁客·请讲」1058VR钱朱平:VR泛娱乐的时代未到,不妨从更细分的行业切入
查看>>