topical media & game development
professional-program-09-SpreadsheetNoCopyAssign-SpreadsheetTest.c
? /
professional-program-09-SpreadsheetNoCopyAssign-SpreadsheetTest.c
include <Spreadsheet.h>
void printSpreadsheet(Spreadsheet s)
{
// code omitted for brevity
}
int main(int argc, char** argv)
{
//Spreadsheet s1(4, 3);
//printSpreadsheet(s1);
Spreadsheet s1(2, 2), s2(4, 3);
s1 = s2;
return (0);
}
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.