Skip to content

Instantly share code, notes, and snippets.

@AndreFCruz
Created June 5, 2017 19:05
Show Gist options
  • Select an option

  • Save AndreFCruz/0ea8c92dc8771c16e93107ddb1f54508 to your computer and use it in GitHub Desktop.

Select an option

Save AndreFCruz/0ea8c92dc8771c16e93107ddb1f54508 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <string.h>
int main() {
int i;
for (i = 0; i < 108; i++) {
printf("%d. %s\n", i, strerror(i));
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment