Project -> Properties -> Build targets
. Вы должны увидеть флажок: Pause when execution ends
где-то там. Тип вашего приложения должен быть Console application
.
Примечание: я использую Code :: Blocks 16.01. Ваши могут немного отличаться.
Кроме того, вы можете войти в файл:
#include <stdio.h>
FILE* logfile;
int main() {
logfile = fopen("logging.txt", "w");
if(logfile == NULL) {
// Couldn't open the file.
return 1;
}
fprintf(logfile, "Logging to logging.txt\n");
fclose(logfile);
return 0;
}
Или вы можете «перенаправить» stdout
в файл:
freopen("stdout.txt", "w", stdout);
printf("Logging to stdout.txt\n");
Оба из них C. Для C ++: Запись файла журнала на c / c ++