Forum: C Aug 20th, 2007 |
| Replies: 6 Views: 960 Read this
http://www.eternallyconfuzzled.com/tuts/languages/jsw_tut_pointers.aspx |
Forum: C Aug 19th, 2007 |
| Replies: 5 Views: 3,545 In case char *name="Yankee Duddle"; string literal turns into an unnamed, static array of characters, and this unnamed array may be stored in read-only memory, and which therefore cannot necessarily... |
Forum: C Dec 12th, 2005 |
| Replies: 5 Views: 1,438 Syntax
#include <string.h>
void *memset(void *s, int c, size_t n);
Description
memset() sets the first n bytes in memory area s to the value of c (converted to an
unsigned char). It returns s. |