I'am having problem with the following:
rec1len = strlen(temp1);
temp1 is a character array, multi dimensional array.
it has been initialised as char temp1[12][104];
int rec1len.
error for this message: C:\Program Files\Microsoft Visual
Studio\MyProjec ts\Valid\Zenith 124\Zenith.cpp( 162) : error C2664:
'strlen' : cannot convert parameter 1 from 'char [12][104]' to 'const
char *'
can anyone help please.
rec1len = strlen(temp1);
temp1 is a character array, multi dimensional array.
it has been initialised as char temp1[12][104];
int rec1len.
error for this message: C:\Program Files\Microsoft Visual
Studio\MyProjec ts\Valid\Zenith 124\Zenith.cpp( 162) : error C2664:
'strlen' : cannot convert parameter 1 from 'char [12][104]' to 'const
char *'
can anyone help please.
Comment