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 MintJulep on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: underwere
  • Order by date
  1. underwere

    Array Declaration

    in order to use a matrix whose dimensions are not known beforehand u can use an allocatable matrix, eg: program . real, allocatable :: a(:,:) . . . . allocate ( a(3,6) ) . end this creates a matrix and u get to give the dimensions u want later on. it could be like this: program integer...

Part and Inventory Search

Back
Top