I tried to compile following program with gcc.
0 #include <stdio.h>
1
2 main ()
3
4 {
5 char my_string[] = "hello there";
6
7 my_print (my_string);
8 my_print2 (my_string);
9}
10
11 void my_print (char *string)
12 {
13 printf ("The string is %s
", string);
14 }
15
16 void my_print2 (char *string)
17 {
18 char *string2;
19 int size, i;
20
21 size = strlen (string);
22 string2 = (char *) malloc (size + 1);
23
24 for (i = 0; i < size; i++)
25 string2[size - i] = string[i];
26
27 string2[size+1] = '';
28 printf ("The string printed backward is %s
", string2);
29 }
However, it fails and the compiler produces following error log:
- greeting.c: 11: error:conflicting types for 'my_print'
- greeting.c: 7: error: previous implicit declaration of 'my_print' was here
- greeting.c: 16: error:conflicting types for 'my_print2'
- greeting.c:8: erroro:previous implicit declaration of 'my_print2' was there
And if I move the my_print and my_print2 functions before the main function, everything goes well.
So can anyone explain why the problem happens?
Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…