How can i declare ???

I have a constructer with 5 parameters. In the main i have to call it and after its done i have to display its elements with the display function inside the class.My problem is the the class doesnt have a default constructer so and i dont know how to assign a variable name to it.
This is the constructer
1
2
3
4
5
6
7
8
ZealotCircle 	
( 	
 const string  	names[],
 int  	numberOfNames,
 int  	numberOfZealots,
 int  	eliminationGap,
 int  	seed
)


If you want to use that ctor, you'd do it like so:

ZealotCircle theZealots(names,5,4,3,2);
Topic archived. No new replies allowed.