实例 C 语言多行注释

x
 
#include <stdio.h>
int main() {
  /* The code below will print the words Hello World!
  to the screen, and it is amazing */
  printf("Hello World!");
  return 0;
}
                    

输出结果

Hello World!