How can be a master in c++ ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can be a master in c++ ?

please help me

26th Jan 2017, 4:43 PM
Hardik
2 Answers
+ 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; }
26th Jan 2017, 4:57 PM
Dawzy
Dawzy - avatar
+ 1
Practice, practice then some more practice. Read books, spend time programming. Contribute to open source projects.
26th Jan 2017, 4:53 PM
Alex
Alex - avatar