Skip to content

Instantly share code, notes, and snippets.

@fgaray
Created January 27, 2013 03:59
Show Gist options
  • Save fgaray/4646196 to your computer and use it in GitHub Desktop.
Save fgaray/4646196 to your computer and use it in GitHub Desktop.
Convierte entre mayúsculas y minúsculas fácilmente.
#include <stdio.h>
int main(int argc, const char *argv[])
{
char x;
const char magia = 32;
scanf("%c", &x);
x = x | magia;
printf("Minuscula: %c\n", x);
x = x & (~ magia);
printf("Mayuscula: %c\n", x);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment