mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
added stdint.h for fixed width ints
This commit is contained in:
parent
fe5c6a724d
commit
6a09ade47d
@ -1,4 +1,5 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
int64_t get_product(FILE *fp, long start_pos, int num_digits)
|
int64_t get_product(FILE *fp, long start_pos, int num_digits)
|
||||||
@ -44,7 +45,6 @@ int64_t get_product(FILE *fp, long start_pos, int num_digits)
|
|||||||
return prod;
|
return prod;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int position = 0;
|
int position = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user