nathan.c

来自「1984-1993模糊 C 源代码竞赛.zip 非常的好,不过这是DOS格式,」· C语言 代码 · 共 27 行

C
27
字号
#include <stdio.h>static char *text[] ={  "Export of this program from the USA is governed by the US",  "Munitions List from the ITAR (International Traffic in Arms",  "Regulations). This list gives the specific categories of",  "restricted exports and includes cryptographic exports. Traffic",  "entirely external to, entirely internal to, or into the USA is",  "not restricted.",  "To obtain a copy of the program, email to nathan@inmos.co.uk",  "with a subject \"IOCCC request\". If you know that your 'From'",  "line is incorrect, add a single line",  "\"replyto you@your.correct.address\" to the body of the message.",  "A deamon will autoreply.",  "WARNING: You must not re-export this out of the USA, or else",  "the men in black might get you.",  NULL};int main(){  char **ptr;  for(ptr = text; *ptr; ptr++)    printf("%s\n", *ptr);  return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?