Skip to main content

Posts

Showing posts from November, 2014

Operations on Big Numbers

 (Photo credit: Wikipedia ) Ideas for storing and operating on Big numbers in C++     Hello World! Today I would like to share my C/C++ Code developed for storing and performing different operations on a Big Numbers. Big Numbers are those, which cannot handled by any normal predefined data type (int,float,double,long) of any available programming language. I have developed that code to get big numbers and store them in user defined data type like linked list. Initially big number is stored in a String of chars. Doubly linked list is used store every single char per node. Storing a big number in a linked list is just a one thing; there is no use of storing that number in linked list if you cannot perform different oppressions on it. Therefore, I have developed this code in C language to perform very basic oppressions on it like divide and subtraction. I have written this code last year. Until now, I did not update it. I know this...