View Single Post
Join Date: Jul 2008
Posts: 320
Reputation: cikara21 is an unknown quantity at this point 
Solved Threads: 63
cikara21's Avatar
cikara21 cikara21 is offline Offline
Posting Whiz

Re: c++ program to find the product of two array of integers-clear errors?

 
0
  #9
Nov 22nd, 2008
So what's the problems. Declare the method before using them..Example..
// CODE TAG
//   
  1.  
  2. // your code here
  3. //
void matpro(int,int,int); void main() { // call matpro matpro(1,2,3); } void matpro(int a,int b, int c) { // implm. here }
.:-cikara21-:.
Reply With Quote