Since 4/5/2012 6:58:49 AM, woloski has written 2 articles and participated in 1 conversations. woloski signature: woloski
woloski's articles:
Items(2) /1
format number with thousand separator1869 (5/8/2004 10:28:11 PM) comp.lang.awk Right now I'm processing a file where I calculate a new field ($4) based on the other ones. This field is numeric and I need to format it with thousand seprator and decimal separator. I know how to put the dec... Matias
Extendible Hashing implementation237 (9/3/2003 4:40:11 AM) comp.lang.c Hi there, do you know of some implementation of Extendible Hashing in c++ or c? thanks, Matias ... Matias
woloski's replies:
Items(1) /1
file input problem139 (9/3/2003 4:54:42 AM) comp.lang.c++ string fileName; cout>fileName; ifstream fin; fin.open(fileName, ifstream::ios); if(!fin) { cerr<<"blah blah blah"; exit(1); } i get this error message in VC++ .....Error C2664...on the fin.open(fi... Broox(9)