i would like to ask if there is a way to add 2 number array together with operator '+'
For example, I've got two pointer:
char* arr1 //(which has {1,2,3,4})
char* arr2 //(which has {2,3,4,5})
Is there a way to has a:
char* arr3 //which has {3,5,7,9}
Asked
Active
Viewed 16 times
0

Minh Lê Phan Công
- 21
- 3
-
3C doesn't have overloading at all, let alone operator overloading. – Mat May 13 '20 at 10:19
-
oh, i thought it was available like in c++, thank u for your ans – Minh Lê Phan Công May 13 '20 at 10:21