G++ hello world 실습

Jmnote (토론 | 기여)님의 2018년 4월 16일 (월) 00:00 판 (→‎같이 보기)

1 개요

G++ hello world 실습
[root@zetawiki ~]# cat hello.cpp
#include <iostream>

int main()
{
	std::cout << "Hello, World!\n";
	return 0;
}
root@zetawiki:~# g++ hello.cpp -o hello
root@zetawiki:~# ./hello 
Hello, World!

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}