G++ hello world 실습

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 }}