[Linker error] undefined reference to `function1(int*, int*)'

[Linker error] undefined reference to `function1(int*, int*)'
ld returned 1 exit status

I keep receiving this error,any idea how to fix it?

this is my code


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63

#include<iostream>
using namespace std;
const int SIZE = 10;
void function1(int*AA1,int*AA2);

int main()

{
    int *AA1;
    int *AA2;
    int i;
    
    int A1[SIZE] = {1,2,3,4,5,6,7,8,9,10} ;
    int A2[SIZE] = {1,2,3,4,5,6,7,8,9,10} ;
    
     for (int i = 0; i < SIZE ; i++)
   {
      AA1 = &A1[i];
   }
   
      
      
   for (int i = 0; i < SIZE ; i++)
   {
      AA2 = &A2[i];
   }
    
    
    function1 (A1,A2);
    
    system("pause");
    return 0;   
    
}

void funtion1(int *AA1[],int *AA2[])

{
    int i;
    
    
   for (int i = 0; i < SIZE; i++)
   {
      cout << "Value of A1[" << i << "] = ";
      cout << *AA1[i] << endl;
   }
   
   
   for (int i = 0; i < SIZE; i++)
   {
      cout << "Value of A2[" << i << "] = ";
      cout << *AA2[i] << endl;
   }
   
   
   
   
   return ;
}
    
  
Make sure the parameter types are the same when you declare the function on line 5 as when you define it on line 37.
Your forward declaration at line5 and your implementation at line 37 do not agree. They must match exactly.
 
void function1(int*AA1,int*AA2);

 
void funtion1(int *AA1[],int *AA2[])



fixed :) thanks guys
Last edited on
Topic archived. No new replies allowed.