Skip to content

Instantly share code, notes, and snippets.

@kaworu
Created November 27, 2013 09:59
Show Gist options
  • Save kaworu/7673300 to your computer and use it in GitHub Desktop.
Save kaworu/7673300 to your computer and use it in GitHub Desktop.
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
int
main(int argc, char *argv[])
{
u_quad_t x = 42;
printf("%qu\n", x);
return (0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment