Skip to content

Instantly share code, notes, and snippets.

@jbenner-radham
Created April 18, 2014 00:40
Show Gist options
  • Save jbenner-radham/11019130 to your computer and use it in GitHub Desktop.
Save jbenner-radham/11019130 to your computer and use it in GitHub Desktop.
C11 Generic Selector Test
#include <stdio.h>
int main()
{
const char *str = "hello, world";
char cc = 'c';
printf("%s\n", _Generic(cc, char: "c", int: "i"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment