Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~19.0K People Reached
Favorite Tags

7 Posted Topics

Member Avatar for Yzk
Member Avatar for dalaharp

what u need to do is to find out the header and pixel structures for the type of file ur reading and then declare them as structs at the start of ur code. Then u can read in chunks of data from your binary file using fwrite and fread and …

Member Avatar for jephthah
0
3K
Member Avatar for mr_mooz

Hi I have a delphi object to store some music information (note, start time, duratrion...) problem is I always get memory addressing error when I run the code,can someone please tell me where I'm going wrong! I declare it in a seperate unit, with all my other declerations as follows: …

Member Avatar for radu84
0
165
Member Avatar for mr_mooz

Hi I have an array of float and i need to mask the values. I want to be able to get arr[x] and arr[x+1] and then mask them and recombine them results in a radom order (im doing an evolutionary algorithm!) But i cant get the masking to work, it …

Member Avatar for Dave Sinkula
0
209
Member Avatar for WrEcK

I think you will find this does it all. int main() { printf("no."\n); }

Member Avatar for WrEcK
0
147
Member Avatar for Calum

You can add the following line at the end of you code to see a "press any key to conitinue....." type prompt to the user: system("pause"); Your program is probably compiled fine its just not staying up after it has executed. U could always run it from the command prompt …

Member Avatar for Calum
0
125
Member Avatar for mr_mooz

Im trying to write a struct for a binary header of a sun raster file to a file on disk. i have a struct for the header data: [CODE] struct rasterfile { int ras_magic; int ras_width; int ras_height; int ras_depth; int ras_length; int ras_type; int ras_maptype; int ras_maplength; }; which …

0
76

The End.