Reputation: 1
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
Reputation: 2967
while there is row: fscanf(file, "%x\n", num);
fscanf(file, "%x\n", num);
Upvotes: 1