Skip to content

Instantly share code, notes, and snippets.

@Learath2
Created August 9, 2014 17:02
Show Gist options
  • Select an option

  • Save Learath2/51ec1e9e9b43a870a583 to your computer and use it in GitHub Desktop.

Select an option

Save Learath2/51ec1e9e9b43a870a583 to your computer and use it in GitHub Desktop.
K&R2 Exercise 2-9
/*K&R2 Exercise 2-9 "lower"*/
#include <stdio.h>
int lower(int);
int lower(int c)
{
return (c >= 'A' && c <= 'Z') ? c + 'a' - 'A' : c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment