14 lines
175 B
C++
14 lines
175 B
C++
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
// Function used to stall exit in Borland C++Builder
|
|
|
|
void nrexit(void)
|
|
{
|
|
cin.get();
|
|
return;
|
|
}
|
|
|
|
#pragma exit nrexit
|