...not be dereferenced, and you cannot do pointer arithmetic on a pointer to void.
A <code>[[char]]*</code> and a <code>[[Void|void]]*</code> are guaranteed to have the same internal representation.
...
635 bytes (102 words) - 10:19, 26 June 2006
<c>void *memcpy(void *dest, const void *src, size_t n);</c>
<c>void *memcpy(void * restrict dest, const void * restrict src, size_t n);</c>
...
1 KB (213 words) - 10:18, 26 June 2006
void *malloc(size_t n);
void *realloc(void *p, size_t n);
...
1 KB (237 words) - 11:05, 17 September 2006
void clearerr(FILE *);
size_t fread(void * restrict, size_t, size_t, FILE * restrict);
...
2 KB (336 words) - 09:14, 26 June 2006
int a(void)
int b(void)
...
1 KB (202 words) - 10:26, 26 June 2006
void *memchr(const void *, int, size_t);
int memcmp(const void *, const void *, size_t);
...
3 KB (448 words) - 13:47, 29 June 2006
<c>void *memset(void *s, int c, size_t n);</c>
void *memset(void *s, int c, size_t n)
...
1 KB (177 words) - 10:18, 26 June 2006
void foo(int x);
int main(void) {
...
1 KB (173 words) - 10:19, 26 June 2006
void push(double);
double pop(void);
...
3 KB (449 words) - 15:43, 29 June 2006
int getch(void) /* get a (possibly pushed back) character */
void ungetch(int c) /* push character back on input */
...
4 KB (507 words) - 05:45, 10 January 2022
<c>void *memchr(const void *s, int c, size_t n);</c>
void *memchr(const void *s, int c, size_t n)
...
2 KB (280 words) - 11:12, 4 May 2020
int getch(void) /* get a (possibly pushed-back) character */
void ungetch(int c) /* push character back on input */
...
4 KB (533 words) - 05:46, 10 January 2022
<c>void *memmove(void *dest, const void *src, size_t n);</c>
void *memmove(void *dest, const void *src, size_t n)
...
4 KB (591 words) - 23:57, 26 June 2006
void itoa(int n, char s[], int width);
void reverse(char s[]);
...
5 KB (733 words) - 07:43, 29 August 2023
#define NULL ((void*)0)
...o one seems to dispute that it's the Standard's ''intention'' that <code>((void *)0)</code> is a valid definition of NULL, nor that any other reading is se
...
2 KB (264 words) - 07:49, 29 June 2006
<c>int memcmp(const void * s1, const void * s2,size_t n);</c>
int memcmp(const void* s1, const void* s2,size_t n)
...
2 KB (218 words) - 20:21, 10 June 2014
void itob(int n , char s[], int b);
void reverse(char s[]);
...
6 KB (983 words) - 09:55, 15 August 2023
int getch(void);
void ungetch(int);
...
9 KB (1,342 words) - 14:14, 9 December 2021
void foo(int *x);
int main(void) {
...
3 KB (436 words) - 10:19, 26 June 2006
void writelines(char *lineptr[], int nlines);
void my_qsort(void *lineptr[], int left, int right,
...
12 KB (1,586 words) - 05:32, 24 December 2021