Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. hoohaahii

    Strtok with consecutive delimiters

    Thank you Olded, exactly what I wanted to do. it worked perfectly thank you very much.
  2. hoohaahii

    Strtok with consecutive delimiters

    omg hehehe, sorry the output is 1 2 3 4 and I want it to be 1 2 3 0 0 4 sorry. A.Y.A
  3. hoohaahii

    Strtok with consecutive delimiters

    Hello, Say I have the following string str = "1,2,3,,,4" when I'm applying the strtok function strtok(str,",") and printing the output it is returning the following 3 5 6 5 is there any way to make it return 3 5 6 0 0 5 it looks strtok is jumping through all the commas and returning the...
  4. hoohaahii

    Run my code on several files.

    it worked perfectly thanks.
  5. hoohaahii

    Run my code on several files.

    Thank you guys, I used the forfile command , but the problem is that my program requires two arguments which are the input file "*.csv" and an output file "*.sd", I can not figure out how to specify the output file in the forfile command! any idea? Dian, your idea didn't work, for the same...
  6. hoohaahii

    Run my code on several files.

    Hi, I wrote a C code that converts csv files to space delimited. it works fine, but now I need to run the code on a lot of files. is there a way to run my code on multiple files without having to do it one by one? I don't know if this involves a C code or is it some trick to do in DOS. I'm...
  7. hoohaahii

    How to assign files in Debug mode

    Thank you, I'll do that right away :).
  8. hoohaahii

    How to assign files in Debug mode

    Hi, I'm a newbie in Visual Studio 2008. I'm trying to debug a code that copies an input file to and output file after doing some tweaks on its format. If I'me getting it right, instead of writing the command line with the input file and output file arguments, the debugger is going to do that for...

Part and Inventory Search

Back
Top