devxlogo

January 10, 2007

Graphical Tools for MSDE

Microsoft’s small-footprint SQL Server-compatible MSDE database (now replaced by as SQL Server Express) does not include graphical tools. That makes manipulating database objects difficult, or at least irritating. However, there

Create Two-Dimensional Arrays in the Heap

This code demonstrates how to create two-dimensional arrays in the heap: // Returns a pointer-to-pointer to a newly created array// of size [row : col].int **Create2D(int row, int col){ int