Hostname

Revision as of 16:50, 1 December 2007 by 75.161.178.79 (talk) (Add Factor example)

Find the name of the host on which the routine is running.

Task
Hostname
You are encouraged to solve this task according to the task description, using any language you may know.

C

Compiler: gcc 4.0.1

Standard: POSIX.1

#include <limits.h>
#include <unistd.h>

int main()
{
    char name[_POSIX_HOST_NAME_MAX+1];
    gethostname(name, _POSIX_HOST_NAME_MAX+1);
}

C#

System.Net.Dns.GetHostName();

Factor

host-name

IDL

 hostname = GETENV('computername')

Java

 String hostname = java.net.InetAddress.getLocalHost().getHostName();

Perl

Interpreter: perl 5.8.6

use Sys::Hostname;

$name = hostname;

Pop11

lvars host = sys_host_name();

Python

Interpreter: Python 2.5

 import socket
 host = socket.gethostname()

Tcl

The basic introspection tool in TCL is the info command. It can be used to find out about the version of the current Tcl or Tk, the available commands and libraries, variables, functions, the level of recursive interpreter invocation, and, amongst a myriad other things, the name of the current machine:

 set hname [info hostname]

Toka

2 import gethostname
1024 chars is-array foo
foo 1024 gethostname
foo type