Home > Back-end >  Dear bosses, int and void * how to call the data type?
Dear bosses, int and void * how to call the data type?

Time:01-03

Dear bosses, int and void * how to call the data type?

CodePudding user response:

# ifdef _WIN32
Void * p;
int i;
P=(void *) I;
I=(int) p;
#endif
  • Related