2022-06-02 13:08:59 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
2022-06-06 00:16:44 +00:00
|
|
|
#include <stdio.h>
|
2022-06-05 22:02:54 +00:00
|
|
|
#include <stdlib.h>
|
2022-06-06 00:26:32 +00:00
|
|
|
#include <errno.h>
|
2022-06-02 23:36:04 +00:00
|
|
|
|
2022-06-06 04:57:25 +00:00
|
|
|
#include <inttypes.h>
|
2022-06-05 22:02:54 +00:00
|
|
|
|
2022-06-06 04:57:25 +00:00
|
|
|
int main(int argc, char** argv) {
|
|
|
|
uint64_t mynumber = 4;
|
2022-06-06 05:34:35 +00:00
|
|
|
printf("Hello, guys %"PRIu64"\n", mynumber);
|
2022-06-06 04:57:25 +00:00
|
|
|
return 0;
|
2022-06-05 22:02:54 +00:00
|
|
|
}
|