Hi all
i've a file sysdef.dat which looks similar to this :
temp = 43;
data = 23;
temp2 = 34;
...
and it goes on up to some values...
how do I read only the values of temp and temp2(i.e 43 & 34) from this file...
I've also tried using strtok() for separating the strings temp, 45
but i don't know how to proceed further...