Back
Close

hello world 42 version

NoobTips
3,809 views

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

Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io