Question d’entretien chez Pulse Secure

Summation of two large numbers input as character strings.

Réponse à la question d'entretien

Utilisateur anonyme

13 août 2020

long long sum2Num(string s1, string s2){ long long sum = stoll(s1) + stoll(s2); return sum; }