+ 1
How can be a master in c++ ?
please help me
2 ответов
+ 2
#include <iostream>
using namespace std;
const string ways[] = {"Practice", "Master Libraries", "Dedication", "Hard work" };
int main() {
cout << "Try these:" << endl;
for (int i = 0, i < (sizeof(ways)/sizeof(ways[0])); i++) {
cout << ways[i] << endl;
}
return 0;
}
+ 1
Practice, practice then some more practice. Read books, spend time programming. Contribute to open source projects.