10 lines
139 B
C
10 lines
139 B
C
|
|
#include <stdlib.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
puts(getenv("HOME"));
|
||
|
|
puts(getenv("PATH"));
|
||
|
|
puts(getenv("USER"));
|
||
|
|
return 0;
|
||
|
|
}
|