fork download
  1. int *retMalloc()
  2. {
  3. int *mal = (int *)malloc(10);
  4. return mal;
  5. }
  6.  
  7. int retVal()
  8. {
  9. int value = 10;
  10. return value;
  11. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty