Программа, которая выдает размер директории. Выдает ошибку в строчке exit (1). ” ‘exit’ was not declared in this scope”. В чем может быть ошибка? #include <stdio.h> #include <dirent.h> #include <sys/stat.h> main() { DIR *d; struct dirent *de; struct stat buf; int exists; int total_size; d = opendir(“.”); if (d == NULL) { perror(“prsize”); exit(1); //Read more