Hi

here is the error I got after executing the program

prog.c:12:5: error: redefinition of ‘main’
int main() {
^~~~
prog.c:3:5: note: previous definition of ‘main’ was here
int main() {
^~~~

#include <stdio.h>

int main() {
#include <stdio.h>

return 0;
}