Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by miguelf

  1. miguelf

    Dynamic memory allocation for 2D arrays

    You might want to consider allocating one contiguos block of memory. This is helpful in reading the data in from a file and copying one matrix to the other. Below, is a detailed explanation: int rows = 50, cols = 100; // in general no need to be square type **buffer; // substitute type with...

Part and Inventory Search

Back
Top