980628-5.f
来自「gcc-you can use this code to learn somet」· F 代码 · 共 28 行
F
28 行
* g77 0.5.23 and previous had bugs involving too little space* allocated for EQUIVALENCE and COMMON areas needing initial* padding to meet alignment requirements of the system,* including when initial values are provided (e.g. DATA). program test implicit none character c double precision d common /cmn/ c, d if (c .ne. '1') call abort if (d .ne. 10.) call abort end block data init implicit none character c double precision d common /cmn/ c, d data c/'1'/, d/10./ end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?