小智 14

#include <stdio.h>
int main() {
  puts("Yes");
  return 0;
}
Run Code Online (Sandbox Code Playgroud)


aib*_*aib 9

main.c中:

#include <stdlib.h>
#include <stdio.h>

int main(void)
{
    #include "include.h"

    return EXIT_SUCCESS;
}
Run Code Online (Sandbox Code Playgroud)

INCLUDE.H:

#include "nested.h"
Run Code Online (Sandbox Code Playgroud)

nested.h:

printf("yes.\n");
Run Code Online (Sandbox Code Playgroud)