fork download
  1. #include<stdlib.h>
  2. #include<stdio.h>
  3.  
  4. /* main() returns int, not void. */
  5. int main() {
  6.  
  7.  
  8. system("set a=123 & echo %a%");
  9. system("echo %a% ");
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
%a%
%a%