I have following piece of code where I am getting an error of
error: expected expression before const (at line 15)
12 : int
13 : function1(const char *arg1, const char **arg2)
14 : {
15 : int i = function2(const char *arg1, const char **arg2);
16 : }
18 : int
20 : function2(const char *arg1, const char **arg2)
21 : {
22 : }
what does that exactly mean?
Thanks
int i = function2(arg1,arg2);