Open kanishkegb opened 5 years ago
I have few suggestions to improve this great code:
use namespace std
std::
.gitignore
*.o
*.swp
Just saw this today! Thank you for the advices!
I have few suggestions to improve this great code:
use namespace std
is a bad idea, don't be lazy, typestd::
- Why is “using namespace std” considered bad practice?.gitignore
file to your repository: I can see*.o
,*.swp
, and the compiled program uploaded to the repository, which should not be included in version control. This is an easier way to make a.gitignore
file.