hello world 42 version

NoobTips
3,811 views

Open Source Your Knowledge, Become a Contributor

Technology knowledge has to be shared and made accessible for free. Join the movement.

Create Content

#include <unistd.h> int main(void) { int i = 0; char *t = "hello world"; while(t[i] != '\0') { i++; } write(1,t,i); return(0); }

Open Source Your Knowledge: become a Contributor and help others learn. Create New Content