factor/misc/wordsize.c

9 lines
82 B
C

#include <stdio.h>
int main ()
{
printf("%d", 8*sizeof(void*));
return 0;
}