Skip to content

Instantly share code, notes, and snippets.

@phraniiac
Last active June 16, 2016 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phraniiac/958975f72fb68d4f9237 to your computer and use it in GitHub Desktop.
Save phraniiac/958975f72fb68d4f9237 to your computer and use it in GitHub Desktop.
int strsize;
char str[10000];
void input()
{
strsize = 1;
char c = getchar();
while(('a' > c) || (c > 'z'))
c = getchar();
str[0] = c;
int cn = 1;
while(('a' <= c) || (c <= 'z'))
{
c = getchar();
str[cn++] = c;
strsize++;
}
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment