Вопрос

I want to write a function which would redirect the standard output to a file where the name of the file is "name".log where "name" is the argument to the function

void redirect(char *name) {

I don't know where to begin.

Это было полезно?

Решение

You can use freopen()

// code copied from the link
#include <stdio.h>
...
FILE *fp;
...
fp = freopen ("/tmp/logfile", "a+", stdout);
...
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top