#include <stdlib.h>
#include <stdio.h>
int main() {
char *name = "TEST";
char *test = "04";
setenv(name, test, 1);
return 0;
}
Проблема: не задается переменная TEST.
В чем ошибка?
#include <stdlib.h>
#include <stdio.h>
int main() {
char *name = "TEST";
char *test = "04";
setenv(name, test, 1);
return 0;
}
Проблема: не задается переменная TEST.
В чем ошибка?