Implement a C function that can perform addition of two 15-digit (positive) integers. As in C the maximum integer number that can be stored in memory is 2147483647 it is not possible to use primitive data types in order to add very large whole numbers. For this reason, you are required to represent very long integer numbers using arrays of chars and then implement a function that can add two such numbers.
Can any one please help me !