文件名称:COBOL经典面试题
文件大小:140KB
文件格式:DOC
更新时间:2014-09-13 04:52:39
COBOL 面试题
COBOL经典面试题 中英文 ------------------------- Q14) My program has an array defined to have 10 items. Due to a bug, I find that even if the program access the 11th item in this array, the program does not abend. What is wrong with it? A14) Must use compiler option SSRANGE if you want array bounds checking. Default is NOSSRANGE. Q:我的程序有个数组定义了10项。因为有个BUG,我发现即使访问第11项,程序也不异常终止。那是出了什么问题 A:必须使用编译器的一个选项SSRANGE,如果你想检查数组的超界问题。默认是NOSSRANGE