Skip to content

Instantly share code, notes, and snippets.

@Sa1Gur
Created May 10, 2019 10:55
Show Gist options
  • Save Sa1Gur/7f71693e8c4565f7b9b46746a03ca2d0 to your computer and use it in GitHub Desktop.
Save Sa1Gur/7f71693e8c4565f7b9b46746a03ca2d0 to your computer and use it in GitHub Desktop.
#include "stdafx.h"
#include "check.h"
bool CheckE2(char ch, int numb)
{
if ((ch == 'e') && (numb == 2))
{
return true;
}
else
{
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment