fork download
  1. //problem.c
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. int authentic = 0;
  6. int x, y, z;
  7. char buffer[11];
  8. gets(buffer);
  9. if(authentic){
  10. printf("access allowed!");
  11. } else{
  12. printf("access denied!");
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
access denied!