Possible duplicate:"BigInt" in C?
Hey there! I calculate Fibonacci numbers in C to 46 using unsigned int , but I cannot calculate F (47) because it is long. So, is there a way to get numbers greater than 2 ^ 32 in C? NB: I am using a 32-bit processor.
(unsigned) is long , but it is also limited (to 2 ^ 64). If this is not enough, you need to look for the BigInt library .
#include <stdint.h> uint64_t my64bit;
64- ( C ) BigNum, GMP.
BigNum , GMP .
, R.. , bigints. , , . .
, , .
Source: https://habr.com/ru/post/1758608/More articles:Is there a way to make the Android application respond to hardware buttons when the phone is locked? - androidThe timer just won’t die (already!) - c #split the console into two parts for two outputs - redirectВыбросить пользовательское исключение из метода реализации интерфейса - javajqueryui accordion disable specific tab - javascriptIs there a general way to set the DataContext of an ItemContainer under the mouse on a property of some other control? - wpfget list from line delimited output - listРезервное копирование MySQL на совместном хостинге в Windows, которое не позволяет удаленное подключение - windows8086 Assembler - Generating object code from operation codes - assemblyWPF application that outputs html - htmlAll Articles