7 lines
149 B
C
7 lines
149 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
printf("size of uintptr_t = %d\n", sizeof(uintptr_t));
|
|
return 0;
|
|
}
|