C / C++ notes

Make a directory

#include <sys/dir.h>
 
int main(){
   mkdir("./helloworld");
   return 0;
}