Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
#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