sr1.c

来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· C语言 代码 · 共 26 行

C
26
字号
/* This file is compiled and linked into the S-record format.  */extern int e1;extern int e2;int i;int j = 1;static int k;static int l = 1;static char ab[] = "This is a string constant";extern int fn1 ();extern int fn2 ();intmain (){  fn1 (ab);  fn2 ("static string constant");  return e1 + e2 + i + j + k + l;}void__main (){}

⌨️ 快捷键说明

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