Skip to content

Instantly share code, notes, and snippets.

@REPOmAN2v2
Created August 10, 2014 12:04
Show Gist options
  • Save REPOmAN2v2/be4dfd0a7f4bee16e96d to your computer and use it in GitHub Desktop.
Save REPOmAN2v2/be4dfd0a7f4bee16e96d to your computer and use it in GitHub Desktop.
uhh
#include <stdio.h>
int main (void)
{
int i;
char s[] = " 0123456789";
for (i = 9; i >= 0; i--)
printf("%.10s\n", s + i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment