Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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