⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nullstring.c

📁 Small Device C Compiler 面向Inter8051
💻 C
字号:
/** Null character in string tests.     storage: data, xdata, code,*/#include <testfwk.h>#if defined(PORT_HOST) || defined(SDCC_z80) || defined(SDCC_gbz80)# define data# define xdata# define code#endif{storage} char string1[] = "";{storage} char string2[] = "a\0b\0c";{storage} char string3[5] = "a\0b\0c";voidtestStringArray(void){  /* Make sure the strings are the correct size */  /* and have the terminating null character */  ASSERT(sizeof(string1)==1);  ASSERT(sizeof(string2)==6);  ASSERT(sizeof(string3)==5);  ASSERT(string1[0]==0);  ASSERT(string2[5]==0);    ASSERT(string2[0]=='a');  ASSERT(string2[2]=='b');  ASSERT(string2[4]=='c');    }voidtestStringConst(void){  char * constStr1 = "";  char * constStr2 = "a\0b\0c";  ASSERT (constStr1[0]==0);  ASSERT (constStr2[5]==0);}

⌨️ 快捷键说明

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