Add String Conversion Function

This commit is contained in:
GuilhermeWerner
2021-04-18 20:15:00 -03:00
parent 293aef9dbf
commit d51196ff4b
7 changed files with 75 additions and 0 deletions

View File

@ -6,6 +6,15 @@ using namespace std;
int main()
{
// Hello
char *result = Library::Hello("C++");
cout << result << "\n";
Library::DeallocString(result);
// Operations
int num1 = 1;
int num2 = 2;