Answers for "helper functions c++"

C++
0

helper functions c++

[helper.hpp]
std::string myReplace(const std::string& s);

[helper.cpp]
std::string myReplace(const std::string& s) {
   ...
}

[somefile.cpp]
#include "helper.hpp"
otherString3 = myReplace(myString3);
Posted by: Guest on October-04-2020

Browse Popular Code Answers by Language