Thread
:
c++ program to find the product of two array of integers-clear errors?
View Single Post
•
•
Join Date: Oct 2006
Posts: 2,752
Reputation:
Solved Threads: 294
niek_e
Offline
Posting Maven
Re: c++ program to find the product of two array of integers-clear errors?
0
#
3
Nov 21st, 2008
This:
for(k=0;k<=;k++;)
Should be this:
for(k=0;k<=;k++)
( no semicolon after k++)
niek_e
View Public Profile
Find all posts by niek_e