May 23, 2005 #1 MarkLaz Technical User May 20, 2005 12 GB Hello again everyone, I need to write a hex value (0xA0A0) to a variable (int I suppose) but I'm not quite sure how to accomplish this. Does anyone have a suggestion? Thanks Mark
Hello again everyone, I need to write a hex value (0xA0A0) to a variable (int I suppose) but I'm not quite sure how to accomplish this. Does anyone have a suggestion? Thanks Mark
May 23, 2005 1 #2 xwb Programmer Jul 11, 2002 6,828 GB Code: int variable; variable = 0xA0A0; Upvote 0 Downvote