Search:

Type: Posts; User: jeremy duncan

Search: Search took 0.01 seconds.

  1. Hi CommonTater, I want to know if this code; ...

    Hi CommonTater,

    I want to know if this code;


    C:\Users\Brian\Desktop>samp.exe
    Contents of variables 'one' to 'twenty-seven':
    1 2 1 4 3 6 5 8 7 10 9 12 11 14 13 16 15 18 17 20 19 22 21 24 23...
  2. I have some new code, and maybe CommonTater can...

    I have some new code, and maybe CommonTater can look it over and add a comment.

    Here is what I use to compile it in visual studio 2010 cmd prompt:

    cl /EHsc samp.cpp

    Here is the results I...
  3. Wow, that's not even C++ then?! I will take your...

    Wow, that's not even C++ then?! I will take your advice and learn C before taking projects like this. Thank you. I have highlighted the;
    •Structures
    •Arrays
    •Loops
    part of my text, so I can...
  4. CommonTater, Looks Like I'm going to have to...

    CommonTater,

    Looks Like I'm going to have to learn C++ too then...But what about the code, what's your opinion on it is what interests me now.
  5. Somebody wrote how to do this in a different...

    Somebody wrote how to do this in a different thread in a different forum. I'm not sure what it means so I'm going to read it during my time learning the C language. But for your benefit I will post...
  6. Could you please check this code I made? It uses...

    Could you please check this code I made? It uses the help of kmess's template, from his previous answer.


    #include <stdio.h>

    typedef struct movie {
    int audio;
    double fps;
    } Movie;
  7. Thank you for the quick reply. I edited your code...

    Thank you for the quick reply. I edited your code and made this:


    #include <stdio.h>

    typedef struct movie {
    int audio;
    double fps;
    } Movie;
  8. I am a very new C student; I want to your help in creating "random video sequence sw"

    I want to take these clips, have clip one as the beginning and clip 27 as the ending, but the clips inbetween varied.
    I want to vary the clips 2 to 26 so they play in a special random order.

    That...
Results 1 to 8 of 12