Skip to content

Instantly share code, notes, and snippets.

@nirbhayc
Created February 18, 2016 22:43
Show Gist options
  • Save nirbhayc/dd81f9b1df88350bc38e to your computer and use it in GitHub Desktop.
Save nirbhayc/dd81f9b1df88350bc38e to your computer and use it in GitHub Desktop.
#include<stdio.h>
#include<unistd.h>
void main() {
char buff[100];
gethostname(buff, sizeof(buff));
printf("%s\n", buff);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment