I have a little problem with my code I have a pointer to integer variable and I want to assign it a char value.
Can I do that???
This code give me an error value = p[i].... Operands of = have incompatible types 'int *' and 'char *'Code:int *value, total; char **p; for (i=0; i< total; i++) value = p[i]; printf(" Value %d\n", value);
Help please!!!



LinkBack URL
About LinkBacks


