scanf("%c", &another);


Try this instead; the space before the "%" say tells scanf to skip space. In this case, it will skip the new line created by pressing enter.


scanf(" %c", &another);
...