i want to open one binary file that contain 650000 data(12 bit form one data that must be saved in one variable) how i can do this?|||unsigned char* buffer;
buffer = (unsigned char*)malloc(sizeof(unsigned char)*650000 );
//do stuff with it
//release it when you're done
free(buffer);
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment