SHOW:
|
|
- or go back to the newest paste.
| 1 | - | #include <assert.h> |
| 1 | + | #include "assert.h" |
| 2 | - | #include <stdbool.h> |
| 2 | + | #include "stdbool.h" |
| 3 | - | #include <ctype.h> |
| 3 | + | #include "ctype.h" |
| 4 | - | #include <stdio.h> |
| 4 | + | #include "stdio.h" |
| 5 | ||
| 6 | int main(void) {
| |
| 7 | assert(isalnum('a') == true & "'a' must be alphanumeric!")
| |
| 8 | assert(isalnum('-') == false & "'-' must not be alphanumeric!");
| |
| 9 | void* x = &x; | |
| 10 | printf("%p %p\n", x = 0, 0);
| |
| 11 | } |