Skip to content

Instantly share code, notes, and snippets.

@kkd927
Created October 17, 2015 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkd927/b5cec90ddf3f129f1be4 to your computer and use it in GitHub Desktop.
Save kkd927/b5cec90ddf3f129f1be4 to your computer and use it in GitHub Desktop.
Structure for Big Integer
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