fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. setenv("BLOCKSIZE", "512", 1);
  5.  
  6. printf("BLOCKSIZE =%s\n", getenv("BLOCKSIZE"));
  7. return 0;
  8. }
Success #stdin #stdout 0.02s 1808KB
stdin
Standard input is empty
stdout
BLOCKSIZE =512