fork download
  1. #include <stdio.h>
  2. //#include <conio.h>
  3. #include <string.h>
  4. //#include <windows.h>
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8. float test;
  9. printf("You see me\n");
  10. test = 3;
  11. printf("Wont get here\n");
  12.  
  13. return(0);
  14. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
You see me
Wont get here