Created
October 17, 2015 15:27
-
-
Save kkd927/b5cec90ddf3f129f1be4 to your computer and use it in GitHub Desktop.
Structure for Big Integer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct BIG_INT { | |
unsigned char *ptr; // 저장 공간의 주소 저장 | |
int size; // 저장 공간의 크기 저장 | |
bool sign; // 부호 저장(true: 음수, false: 양수) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment