fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char str[255];
  5. sprintf(str, "#");
  6. sprintf(str, "%s)", str);
  7. printf(str);
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
#)