Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error when running program...

Status
Not open for further replies.

FORAND

Programmer
May 26, 2003
64
CA
C:\Program Files\Microsoft Visual Studio\MyProjects\TEST API MQSeries\main.cpp(24) : error C2117: 'AHMQ' : array bounds overflow
C:\Program Files\Microsoft Visual Studio\MyProjects\TEST API MQSeries\main.cpp(24) : error C2117: 'CTXT' : array bounds overflow
C:\Program Files\Microsoft Visual Studio\MyProjects\TEST API MQSeries\main.cpp(24) : error C2117: 'SFCT' : array bounds overflow
C:\Program Files\Microsoft Visual Studio\MyProjects\TEST API MQSeries\main.cpp(24) : error C2117: 'HTAB' : array bounds overflow

Any idea?

 
Maybe you have been operating outside the bounds of an array?

Greetings,
Rick
 
you have too many initializers for the size of the array
This is caused by eg...
char somechars[3] = "abcdef";
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top