10 lines
173 B
C
10 lines
173 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
int main() {
|
|
printf("%s", getenv("CWD"));
|
|
chdir("/home/jashton/dev");
|
|
printf("%s", getenv("CWD"));
|
|
}
|