This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/cplbexam/complex/pubfun/construc.cpp

13 lines
239 B
C++
Raw Normal View History

#include <complex.h>
void main( void ) {
Complex p, q (23.4, 26.7); // construct a complex object by different
Complex r (q); // syntax
cout << p << endl;
cout << q << endl;
cout << r << endl;
}