Other

Other

How do I use Gethostname?

How do I use Gethostname? Example: char hostname[1024]; hostname[1023] = ‘\0’; gethostname(hostname, 1023); printf(“Hostname: %s\n”, hostname); struct hostent* h; h = gethostbyname(hostname); printf(“h_name: %s\n”, h->h_name);