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

📄 bug-524697.c

📁 Small Device C Compiler 面向Inter8051
💻 C
字号:
/* Bad addition for adding a length and char[] */#include <testfwk.h>typedef struct _Foo{  char sz[90];} Foo;typedef struct _Bar{  unsigned int uLen;} Bar;char *getOffset(Foo *pFoo, Bar *pBar){  return pFoo->sz + pBar->uLen;}voidtestOffset(void){  Foo foo = {    "Foo"  };  Bar bar = {    3  };  ASSERT(getOffset(&foo, &bar) 	 == (((char *)&foo) + 3));}

⌨️ 快捷键说明

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