01/10/2018, 17:12

Hàm system không chạy theo ý muốn

xin chào mọi người, mình là newbie hiện đang học c theo cuốn headfirst, trong đó có bài:

This is a program that writes timestamped text to the end of a logfile. It would have
been perfectly possible to write this entire program in C, but the programmer has
used a call to system() as a quick way of dealing with the file handling.
See if you can complete the code that creates the operating system command
string that displays the text comment, followed by the timestamp. 

còn đây là code của mình

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

char* now(void);

int main() {
	char comment[120], cmd[200];
	fgets(comment, sizeof(comment), stdin);
	sprintf(cmd, "echo %s %s >> reports.log", comment, now());
	system(cmd);
	return 0;
}
char* now(void) {
	time_t t;
	time(&t);
	return asctime(localtime(&t));
}

vấn đề ở đây là thay vì in vào reports.log, hàm system lại in lên màn hình. Liệu có ai có thể giúp mình không.
Capture
P/s : trong sách có nới muốn học chương này mà dùng win thì cần cài cywin, mình cúng đã làm rồi

*grab popcorn* viết 19:21 ngày 01/10/2018

Tại vì adsf thực ra là adsf\n
-> Command của bạn bị xuống dòng và nó hiểu là

echo adsf
[date here]
> reports.log

Nên nó chỉ thực hiện là echo adsf -> in ra adfs
Ngoài ra hàm convert tgian sang chuỗi cũng cho 1 cái xuống dòng nữa nên nhớ để ý cái đó luôn.
Và việc của bạn chỉ cần xóa cái \n ở cuối chuỗi là được.

Ohoh Tiger viết 19:12 ngày 01/10/2018

cảm ơn bạn nhiều lắm. Chỉ có mỗi cài \n thôi mà mình cũng phát khổ

Bài liên quan
0