c - converting u_int32_t to char ** -
i working functions (c language )and there variable declared u_int32_t value;
and have pass function takes argument of type (char **)
i have tried using value[0] etc doesnot work.
how go ahead typecasting? or
is there workaround it?
a (char **)
type means pointer (*) either 1 or else array of c-string (which pointer first char, or char *
).
the solution hence generate c-string integer value, , pass reference function want call char **
argument. whether solves problem depends on details of function , trying achieve.
Comments
Post a Comment