C/C++
cpro.txt
Associated article: YAPP: Yet Another Programming Platform
Tags: C/C++ Open Source
C Programming
by Al Stevens
Example 1:
#include <iostream>
int main()
{
std::cout << "hello world"
<< std::endl;
return 0;
}


