How to store 64 digits integer in C?
问题 I am dealing with 2 64 digits integers and need to multiple these two numbers. When I tried to store it into a long long int variable, I got the following compiling error: 1.c: In function ‘main’: 1.c:5:6: warning: integer constant is too large for its type. a = 1234567890123456789012345678901234567890123456789012345678901234; Can someone tell me how to store the integer in C? [edit] OP later implies a 64 decimal digit number. 回答1: