Search:

Type: Posts; User: super_stripey

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,874

    Thanks

    ..this also helped understans why my strcat() wasn't working in - you have to allocate memory to hold your strings!
  2. Replies
    5
    Views
    1,874

    ok I've made it simple

    #include <stdlib.h>
    #include <stdio.h>


    int main(void)
    {

    char folder1[20] = "";

    folder1 = "yes";
  3. Replies
    5
    Views
    1,874

    Assigning a value to a char

    Hi,

    In a while loop I need to clear out a value in a char[20] data type and then reassign another value to it, so that comparisons can be made.

    the char is called folder 1 in the following...
  4. Replies
    3
    Views
    2,108

    Thanks - Managed to write this code for visual...

    Thanks - Managed to write this code for visual C++ compiler. I now need to use this info to create a series of windows directories?

    #include <stdlib.h>
    #include <stdio.h>
    #include <io.h>...
  5. Replies
    3
    Views
    2,108

    Retreiving File create/modify date

    Hi,

    I want to retreive the file create / modify date for a bunch of text files.

    Anyone know any C/C++ code to acheive this?
Results 1 to 5 of 6