|
|
back to boardmay i use 'struct'??? Posted by Tiraill 25 Oct 2011 21:34 may i use 'struct' in my programm? Edited by author 25.10.2011 21:34 Re: may i use 'struct'??? Yes! =) for example struct pointT{ double x, y; pointT(){ x = y = 0.0L;} pointT( double _x, double _y ){ x = _x; y = _y; } }; |
|
|