Thread
:
[c] write binary file
View Single Post
07-11-2007, 05:46 PM
#
4
(
permalink
)
Pragma
I am Winter Born
Location: Alexandria, VA
That's because you're referencing it wrong.
Code:
printf("byteBuffer: %X \n", byteBuffer[0] );
Try that instead - I think what's happening instead is that you're printing a the address of the char* byteBuffer pointer.
__________________
Eat antimatter, Posleen-boy!
Pragma
View Public Profile
Find More Posts by Pragma
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47