// assert.cc #include #include using namespace std; int main() { int x=5; assert (x>7); cout << "End of program" << endl; }