env.c 173 B

1234567891011
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main() {
  4. //puts(getenv("SHELL"));
  5. //puts(getenv("CC"));
  6. putenv("TEST=It's working!!");
  7. puts(getenv("TEST"));
  8. }