There are many possible solutions for this.

1) You can use fflush(stdin). This is not recommended though.
2) You can use getche() instead of scanf.
Example:
gender=getche();
3). Or...