#include "SpreadsheetCell.h" #include using namespace std; int main(int argc, char** argv) { SpreadsheetCell c1(4); if (checkSpreadsheetCell(c1)) { cout << "PASS\n"; } else { cout << "FAIL\n"; } return (0); }