Go to the source code of this file.
Compounds | |
class | List |
Functions | |
int | main () |
Variables | |
const int | LIST_SIZE = 10 |
|
Definition at line 90 of file LADTTEX.C. 00090 { // Create and use a list variable 00091 List<int> L1(15); 00092 List<double> L2; 00093 00094 L1.append(12); 00095 L2.append(12.0); 00096 } |
|
|