関数定義の部分で
complex<double> calch(void);に対してerror: expected unqualified-id before ?<? token、
int mld(complex<double> y[NR]);に対してerror: ISO C++ forbids declaration of ?parameter? with no typeとerror: expected ?,? or ?...? before ?<? token
といった感じです。
includeしているのはstdio.h、math.h、complex.h、time.hの4個だけです。
お礼
#include <complex.h>と書いていたのが原因だったようです。 ありがとうございました。