Jump to content
CvGaming

C++


M. Carter
 Share

Recommended Posts

//c++ väg 1, inte jobbig.

#include <iostream>
using namespace std;

int main() 
{
    cout << "Hello, World!";
    return 0;
}
  
//c++ väg 2, jobbig.

#include <iostream>

int main() 
{
    std::cout << "Hello, World!";
    return 0;
}

 

Link to comment
Share on other sites

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.