Main.c:1:19: warning: extra tokens at end of #include directive
1 | #include<stdio.h> int main() {
| ^~~
Main.c:5:7: error: expected declaration specifiers or ‘...’ before string constant
5 | scanf("%lf", &a);
| ^~~~~
Main.c:5:14: error: expected declaration specifiers or ‘...’ before ‘&’ token
5 | scanf("%lf", &a);
| ^
Main.c:6:1: error: expected identifier or ‘(’ before ‘for’
6 | for (; b - 100 < 100;i++ )
| ^~~
Main.c:6:10: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘-’ token
6 | for (; b - 100 < 100;i++ )
| ^
Main.c:6:23: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘++’ token
6 | for (; b - 100 < 100;i++ )
| ^~
Main.c:8:8: error: expected declaration specifiers or ‘...’ before string constant
8 | printf("%d", i);
| ^~~~
Main.c:8:14: error: expected declaration specifiers or ‘...’ before ‘i’
8 | printf("%d", i);
| ^
Main.c:9:1: error: expected identifier or ‘(’ before ‘return’
9 | return 0;
| ^~~~~~