fork download
  1. #include <stdio.h>
  2.  
  3. int main (void)
  4.  
  5. for (int i=0; i<5; i++);
  6.  
  7. {
  8. printf ("Элли самая красивая\n");
  9. }
  10.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:5:1: error: expected declaration specifiers before ‘for’
 for (int i=0; i<5; i++);
 ^~~
prog.c:5:15: error: expected declaration specifiers before ‘i’
 for (int i=0; i<5; i++);
               ^
prog.c:5:20: error: expected declaration specifiers before ‘i’
 for (int i=0; i<5; i++);
                    ^
stdout
Standard output is empty