pascal-strings-3.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 21 行
C
21 行
/* APPLE LOCAL file pascal strings *//* Ensure that there are no warnings or errors issued when a Pascal string is used to initialize an array and the NUL terminator does not fit. *//* Author: Ziemowit Laski <zlaski@apple.com> *//* { dg-do compile } *//* { dg-options "-fpascal-strings" } */typedef unsigned char Str15[16];Str15 ggg = "\p012345678901234";Str15 hhh = "\p0123456789012345"; /* { dg-error "initializer.string for array of chars is too long" } */int foo(void){ Str15 sss = "\p012345678901234"; Str15 ttt = "\p0123456789012345"; /* { dg-error "initializer.string for array of chars is too long" } */ return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?