{"id":16466028,"url":"https://github.com/grim-firefly/g-bigint","last_synced_at":"2025-03-23T11:32:34.979Z","repository":{"id":195058064,"uuid":"223224306","full_name":"grim-firefly/G-BigInt","owner":"grim-firefly","description":"BigInt in C++","archived":false,"fork":false,"pushed_at":"2019-11-28T05:53:25.000Z","size":9,"stargazers_count":15,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-18T19:55:05.688Z","etag":null,"topics":["big-data","big-int","big-int-addition","big-int-c","big-int-cpp","big-int-division","big-int-library","big-int-multipication","big-int-relational-operator","big-int-substraction","big-integer-arithmetic","big-integer-in-c","bigdata","bigint","biginteger","biginteger-cpp","bigintegers","cpp-bigint-library","large-integers","large-numbers"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/grim-firefly.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-11-21T17:07:10.000Z","updated_at":"2024-02-04T22:41:30.000Z","dependencies_parsed_at":"2023-09-16T10:41:48.337Z","dependency_job_id":null,"html_url":"https://github.com/grim-firefly/G-BigInt","commit_stats":null,"previous_names":["grim-firefly/g-bigint"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grim-firefly%2FG-BigInt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grim-firefly%2FG-BigInt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grim-firefly%2FG-BigInt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grim-firefly%2FG-BigInt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grim-firefly","download_url":"https://codeload.github.com/grim-firefly/G-BigInt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245097158,"owners_count":20560311,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["big-data","big-int","big-int-addition","big-int-c","big-int-cpp","big-int-division","big-int-library","big-int-multipication","big-int-relational-operator","big-int-substraction","big-integer-arithmetic","big-integer-in-c","bigdata","bigint","biginteger","biginteger-cpp","bigintegers","cpp-bigint-library","large-integers","large-numbers"],"created_at":"2024-10-11T11:36:05.366Z","updated_at":"2025-03-23T11:32:34.671Z","avatar_url":"https://github.com/grim-firefly.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003e\u003cu\u003e G_BigInt\u003c/u\u003e \u003c/h1\u003e\n\u003ch2\u003eDocumentation : \u003c/h2\u003e\n\u003cp\u003eHere we will describe how to use the G_BigInt in our code.\u003cbr\u003eOpen this code in your editor and do what you want to do in main function\u003c/p\u003e\n\u003cpre\u003e \u003ch3\u003eDeclaration : \u003c/h3\u003e \u003c/pre\u003e\n\u003cp\u003e declare BigInt variable like other's variable . for example, \u003cb\u003eG_BigInt\u003c/b\u003e  x,y,z;\u003cbr\u003e there is two way to initialize G_BigInt;\n  One is using constructor . for example: \u003cb\u003eG_BigInt \u003c/b\u003e  x(\"23243\");\u003cbr\u003e\n  or using string . for example:\u003cbr\u003e\u003cb\u003e string \u003c/b\u003e str=\"3435453543\";\n \u003cbr\u003e                     \u003cb\u003eG_BigInt \u003c/b\u003e x=str;\u003cbr\u003e\n  \u003cbr\u003e\n  but we \u003cb\u003ecan't\u003c/b\u003e initialize like \u003cb\u003eG_BigInt \u003c/b\u003e  x=\"2324\"; or \u003cb\u003eG_BigInt \u003c/b\u003e x=23434235435345454 ; \n\u003c/p\u003e\n\u003ch3\u003eInput and Output:\u003c/h3\u003e\n\u003cp\u003e Input can be taken using \u003cb\u003ecin \u003c/b\u003e \u003e\u003evariable_name ;\u003cbr\u003e\n  and print the output using \u003cb\u003ecout\u003c/b\u003e\u003cspan\u003e \u003c\u003c \u003c/span\u003evariable_name;\u003cbr\u003e\n\u003c/p\u003e\n\u003ch3\u003eArithmetic Operators : \u003c/h3\u003e\n\u003cp\u003e\n\u003cpre\u003e+ \taddition \u003c/pre\u003e\n\u003cpre\u003e- \tsubtraction \u003c/pre\u003e\n\u003cpre\u003e* \tmultiplication\u003c/pre\u003e\n\u003cpre\u003e/ \tdivision\u003c/pre\u003e\n\u003cpre\u003e% \tremainder after division\u003c/pre\u003e\n\u003cpre\u003e usage is as like as we do in integer but here both should be G_BigInt \u003c/pre\u003e\n \u003c/p\u003e\n\u003ch3\u003eRelational Operator :\u003c/h3\u003e\n\u003cpre\u003e \u003c , \u003c= , \u003e , \u003e= , == , != \u003c/pre\u003e\n\u003cpre\u003e usage is as like as we do in integer but here both should be G_BigInt \u003c/pre\u003e\n\u003ch3\u003e increment and Decrement : \u003c/h3\u003e\n\u003cpre\u003e usage is as like as we do in integer. for example : x++; ++x; x--;--x; \u003c/pre\u003e\n\u003ch3\u003e Assignment Operator : \u003c/h3\u003e\n\u003cpre\u003e we can do : x+=y; x-=y; x*=y; x/=y;x%=y \u003c/pre\u003e\n\u003cpre\u003e usage is as like as we do in integer but here both should be G_BigInt \u003c/pre\u003e\n\u003ch3\u003esign change : \u003c/h3\u003e\n\u003cp\u003ewe change sign as we do in integer : x=-x; here x value will be -x.\u003cbr\u003e we need to use - before the variable \u003c/p\u003e\n\n--Thank You\n\u003cpre\u003e\u003cb\u003eGrim Firefly\u003c/b\u003e \u003c/pre\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrim-firefly%2Fg-bigint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrim-firefly%2Fg-bigint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrim-firefly%2Fg-bigint/lists"}