fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = 1;
  5. float b = 2.5;
  6. char c = "A";
  7. printf("a=%d\n",a);
  8. printf("吴晓宝\n");
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
a=1
吴晓宝