fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int i;
  6. for(i = 0; i <= 10; i++){
  7. printf("Happy Valentine's Day ");
  8. }
  9. End For
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:9:1: error: unknown type name 'End'
 End For
 ^
prog.c:10:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '}' token
 }
 ^
prog.c:10:1: error: expected declaration or statement at end of input
stdout
Standard output is empty