B
Brian Stubblefield
Dear clc members,
I am rather new to the C programming language.
I have a rather large program that I am currently debugging.
Currently, the following snippet of code in the c program:
char skillkey[96][1];
char (*fillkey_ptr)[96]= skillkey;
results in a "warning: initialization from incompatible pointer type"
message during the compile.
What can I do to solve this issue?
Any help is greatly appreciated.
Thank you in advance,
Brian
I am rather new to the C programming language.
I have a rather large program that I am currently debugging.
Currently, the following snippet of code in the c program:
char skillkey[96][1];
char (*fillkey_ptr)[96]= skillkey;
results in a "warning: initialization from incompatible pointer type"
message during the compile.
What can I do to solve this issue?
Any help is greatly appreciated.
Thank you in advance,
Brian