Skip to content

Instantly share code, notes, and snippets.

@Eugeny
Created March 10, 2011 18:32
Show Gist options
  • Save Eugeny/864601 to your computer and use it in GitHub Desktop.
Save Eugeny/864601 to your computer and use it in GitHub Desktop.
< printf("Sign of first parner:%s\n",*signs[FirstPerson.sign]);
< printf("Sign of second parner:%s\n",*signs[SecondPerson.sign]);
---
> printf("Sign of first parner:%s\n",signs[FirstPerson.sign-1]);
> printf("Sign of second parner:%s\n",signs[SecondPerson.sign-1]);
< int sign = 12, i = 0;
---
> int i = 0;
< sign = i + 1;
< return sign;
---
> return i+1;
< }
\ В конце файла нет новой строки
---
> }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment