This program is really getting on my nerves:
I am trying to read a line from a file with following information:
512 MB 136.186.99.1 00-25-B3-0B-31-29
which is in the format of double string string string
and the code I'm using is
fscanf(filePtr, "%lf %s %s %s", &Computer[i].ram, Computer[i].ram_unit, Computer[i].MACNo, Computer[i].IPV4);
but when I print Computer[i].ram_unit I get:
MB136.186.99.1
Please help me to find out what I'm doing wrong. Let me know if you like me to paste the entire code.
Thanks