Search:

Type: Posts; User: Harman

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,007

    Installer program

    Does anyone know of a installer program that installs my .exe file that i created in c and runs a .reg file that does some registry editing. Kindly LMK
  2. Thanks guys, If i read one char at a time it...

    Thanks guys,
    If i read one char at a time it seems to be working so thats what i am going to do.

    [RESOLVED]
  3. function to copy MAB file from one folder to another

    Hi,
    Is there a function that copys a file from a folder to a different folder. I was trying to use "rename" but i dont think it takes different source and destination folder. Right now I am opening...
  4. Replies
    2
    Views
    1,032

    pass by refrence help.

    The function takes a string pointer and returns by refrence a string . I can print the string just fine in the function inself but when i try to print it from the main function it prints some junk....
  5. Replies
    2
    Views
    1,117

    something like pattern =...

    something like
    pattern = "/^tbzfile_\d{4}.tbz$/";



    if(pattern, strToBeSearched){
    //found
    }else
    //not found
    }
  6. Replies
    2
    Views
    1,117

    regexec and wild cards help

    I want to find if a string matches this pattern:

    tbzfile_????.tbz

    where ? is a digit.
  7. Replies
    6
    Views
    3,559

    resolved...

    resolved...
  8. Replies
    6
    Views
    3,559

    How do i return the pointer of the string buf2.

    How do i return the pointer of the string buf2.
  9. Replies
    6
    Views
    3,559

    Thank you sir...Let me try it your way...thanks...

    Thank you sir...Let me try it your way...thanks again
  10. Replies
    6
    Views
    3,559

    here is the function... char...

    here is the function...


    char *getAddressbookDir(char tbIni[]){

    char line[SIZE], tLine[SIZE], *pathAb, *mDir, *sDir;
    int lnLen;
    FILE *ifp;

    ifp = fopen(tbIni, "r");
  11. Replies
    6
    Views
    3,559

    strcat and pointer problem

    The last line doesnot concatenate the 2 values, doesanybody know why???

    some code......
    mDir = strtok(NULL, "=");
    //mDir has the value "Profiles/p41ad5yo.default"
    ...............
    ...
  12. Replies
    2
    Views
    1,557

    thanks, as you can guess i am very new to c.

    thanks, as you can guess i am very new to c.
  13. Replies
    2
    Views
    1,557

    how do i get the environment variable

    On a windows machine in command prompt when i type "set" i get a list of environment variables. How do i access these from a c program. I am looking for the variable called "USERPROFILE"
Results 1 to 13 of 14