#include <stdio.h> #include <unistd.h>
int main(int argc, char *argv[]) {
long id;
id = gethostid();
printf("current hostid is: %x\n",id);
}
테스트 결과
current hostid is: 8336256d
by 공간사랑