mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
15 lines
244 B
C++
15 lines
244 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void){
|
|
|
|
long long test[] = {7512884309367350605,
|
|
2410377348306397554,
|
|
8481};
|
|
|
|
printf("%s\n", (char *) &test);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|