mirror of
https://github.com/epasveer/seer.git
synced 2026-08-31 01:20:45 +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;
|
||
|
|
}
|
||
|
|
|