i want to plus two strings .
i mean if i want to take large number like this 12344566677890565432333 in string
and take another number like this 239342498343094283049
i want to plus the two numbers .
how??
Be aware that your machine's unsigned int might top out at 4,294,967,295 if it's 32 bit, or 18,446,744,073,709,551,615 if it's 64 bit. Not enough for your values.
Hence why I suggest doing it as you would on paper (i.e. add the two values on the right, if the sum is greater than ten add one to a value to the left, now move on to the next two values etc etc).