Sam s
Sam s

Reputation: 1

HEX code Scanning and processing

How to scan multiple HEX values from a file and store it into an integer variables(different for every row of HEX numbers). Considering 4 bytes for integer and 6050BD in row one and 8060EF in second row and So on.

Upvotes: 0

Views: 98

Answers (1)

Felipe Lavratti
Felipe Lavratti

Reputation: 2967

while there is row: fscanf(file, "%x\n", num);

Upvotes: 1

Related Questions