Début
May 1, 2018 at 6:50pm
Cc, ca compile pas ce code, pq
|
cout << "Hello world" << end
|
May 1, 2018 at 6:53pm
Il faut un main
May 1, 2018 at 7:01pm
1 2 3 4 5 6 7
|
#include <iostream>
using namespace std;
int main() {
cout << "Bonjour le monde" << endl;
return 0;
}
|
Topic archived. No new replies allowed.