Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  1. ThomasGGiusepe

    argc argv in winmain

    I've implemented it about 5 days ago. Thanks for your feedback anyway. Best wishes.
  2. ThomasGGiusepe

    C++ String Manipulation Question

    I suppose that you take the string from a file content. Hope this help you... -- char *aux1,aux2[7],buffer[50],var[200]; // read a file line content up to the end // of the line in the present string fgets(buffer,200,file2); sscanf(buffer,"%s", &var); aux1=&var[0]; count=0...
  3. ThomasGGiusepe

    argc argv in winmain

    Hi there, How to get argc and argv with winmain ? Thanks! Tom
Back
Top