반응형
#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
반응형
#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