hello
i want to know how fprintf(),fscanf() works..
suppose i have data like below?
item number price quantity
aaa-1 111 23.76 115
bbb-2
c-3 125 31.67 104
now suppose i am using in a LOOP fscanf(stdin,"%s%d%f%d", item,&number,&price,&quantity);--then how file pointer will work? and what it this STDIN???