30/09/2018, 19:45

Bị lỗi khi chạy vòng lặp dowhile!

#include <stdio.h>
#include <stdlib.h>

int main()
{
	int i = 1;
	do {
		printf("%d
",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:UsersVS9 X64BitDocumentsDIV++Makefile.win:28: recipe for target ‘dowhile.o’ failed

mingw32-make.exe: *** [dowhile.o] Error 1

Tuấn Nguyễn viết 21:52 ngày 30/09/2018

Lỗi này không phải do code

viết 21:55 ngày 30/09/2018

@Tau_Nguyen Hình như là lỗi -std=c99
DevC k tương thích hdh nên k cài, tìm trên mạng thấy chỉ: In the project options, go to ‘parameters’, then add ‘-std=c99’ to the ‘compiler’ textbox

Nếu tiện thì bạn cài CodeBlock cho dễ dùng, xong vào Settings > Compiler > Other Compiler Options
gõ vào -std=c99

Bài liên quan
0