Computer Science, asked by utdd4, 2 months ago

how to add 2 long long numbers in C program​

Answers

Answered by IronManRox
1

Answer:

1) Reverse both strings.  

2) Keep adding digits one by one from 0’th index (in reversed strings) to end of smaller string, append the sum % 10 to end of result and keep track of carry as sum/10.  

3) Finally reverse the result.  

Explanation:

Please mark me as the brainliest!

Similar questions