Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. #include <assert.h>
  2. #include <stdbool.h>
  3. #include <ctype.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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement