#include <stdio.h> int remove(const char *pathname);
#include <stdio.h> int main() { remove ("./remove_test_dir"); remove ("./remove_file.del"); return (0); }