I need code in only one line. At the moment, I have not found anything useful.
For example, I have:
#include <unistd.h>
int function(){write(1,"abcdefghijkmnopqrstuvwxyz\n",27);return(0);}
And I'm looking for something like:
#include <unistd.h>;int function(){write(1,"abcdefghijkmnopqrstuvwxyz\n",27);return(0);}
source
share