when using a-sharpinclude reference, the reference is not smooth.
the following is the code:
-sharpinclude "print.h"
int main(void){
printHello();
return 0;
}
< hr >
-sharpinclude <stdio.h>
void printHello(void);
< hr >
-sharpinclude "print.h"
void printHello(){
printf("Hello World \n");
}
< hr >
The level of
is like this, how can you solve it?