...
Wiki Markup |
---|
The following example is based on rule \[[MEM02-A. Do not cast the return value from malloc()]\]. The header file {{stdlib.h}} contains the function prototype for {{malloc()}}. Failing to include {{stdlib.h}} causes {{malloc()}} to be implicitly definedcalled without the proper function prototype in scope. |
Code Block | ||
---|---|---|
| ||
char *p = malloc(10); |
...