#include <stdio.h>
#include <stdlib.h>
int main()
{
int i = 1;
do {
printf("%d\n",i);
i++;
}
while(i<10);
return 0;
}
after build:
gcc.exe -D__DEBUG__ -c dowhile.c -o dowhile.o -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.8.1/include" -m32 -g3 -std=c99 dowhile.o
gcc.exe: error: dowhile.o: No such file or directory
C:\Users\VS9 X64Bit\Documents\DIV++\Makefile.win:28: recipe for target ‘dowhile.o’ failed
mingw32-make.exe: *** [dowhile.o] Error 1
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?