Search:

Type: Posts; User: ExxNuker

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,732

    i don't think you can declare your loop variables...

    i don't think you can declare your loop variables inside the loop, try doing it this way



    int i = 0;
    for(i; i<8; i++)
  2. Replies
    15
    Views
    9,594

    malloc will return a NULL pointer if the size of...

    malloc will return a NULL pointer if the size of the block to be allocated is zero, or if there was insufficient memory
  3. Replies
    27
    Views
    2,404

    #include using namespace std; ...

    #include <iostream>

    using namespace std;

    int mult(int a, int b);

    int main(){

    int selection;
    int num1;
  4. Replies
    3
    Views
    1,283

    it has both ftp and http sections, the data can...

    it has both ftp and http sections, the data can be easily moved to either
  5. Replies
    3
    Views
    1,283

    Pulling Files off a Server

    I have written a file processing script and now i'd like to have the program retrieve the data files from the server itself, instead of me having to pull the updated files myself at the end of the...
  6. Replies
    4
    Views
    897

    again READ THE INFORMATION HERE!!!!! ...

    again

    READ THE INFORMATION HERE!!!!!

    http://www.msoe.edu/eecs/cese/resources/stl/string.htm
  7. Replies
    4
    Views
    897

    try looking up the return type of the length...

    try looking up the return type of the length function......I think you'll be able to figure out what you are doing wrong from there.

    http://www.msoe.edu/eecs/cese/resources/stl/
  8. Replies
    3
    Views
    1,801

    rather, you should look at your loop,...

    rather, you should look at your loop, specifically at your two if conditions.......your loop only executes once, no matter what number you enter
  9. Replies
    3
    Views
    1,361

    http://msdn.microsoft.com/library/default.asp?url=...

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcstdlib/html/vcoriheaders_stl.asp

    descriptions of various C header files
  10. try renaming the variable int gcf ..... its the...

    try renaming the variable int gcf ..... its the same as the name of your function
  11. Thread: ClipBoard ...

    by ExxNuker
    Replies
    12
    Views
    2,188

    http://msdn.microsoft.com/library/default.asp?url=...

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/HTML/_core_clipboard.3a_.using_the_windows_clipboard.asp
  12. Replies
    9
    Views
    1,835

    I have some flexibility with my choice of...

    I have some flexibility with my choice of parameters, If i pass the array directly, than i can use sizeof() to determine the number of elements
  13. Replies
    6
    Views
    9,587

    By error I mean something went wrong, whether it...

    By error I mean something went wrong, whether it was that system couldn't open your command interpreter or some other reason....the way to tell what went wrong is to check errno (read through the...
  14. Replies
    9
    Views
    1,835

    love simple answers.....i'm oblivious sometimes!...

    love simple answers.....i'm oblivious sometimes!

    Thanks a bunch!
  15. Replies
    6
    Views
    9,587

    http://www.cplusplus.com/ref/cstdlib/system.html...

    http://www.cplusplus.com/ref/cstdlib/system.html

    System() has two possible returns it looks like either 0 (or whatever your compiler evaluates to true) or -1 where -1 indicates an error

    so if...
  16. Replies
    9
    Views
    1,835

    Determining size of block of memory

    Say i have a function that is being passed two pointers to two separate arrays of doubles and that these arrays occupy the same ammount of memory. how can I:

    Initialize a third pointer to the...
  17. Replies
    3
    Views
    1,486

    preprocessor directives? #ifndef MAZE_H...

    preprocessor directives?


    #ifndef MAZE_H
    #define MAZE_H

    class Maze{

    };
  18. Replies
    3
    Views
    1,486

    Please post your compiler errors

    Please post your compiler errors
  19. Replies
    2
    Views
    1,461

    typedef struct{ int wordCounter; ...

    typedef struct{

    int wordCounter;
    string theWord;

    }Wrd;

    [NOTE] Your original version was correct on the definition of the struct, just my bias to declare structs in the manner...
  20. Replies
    7
    Views
    1,862

    thanks for the clarification. been trying to...

    thanks for the clarification. been trying to teach myself windows programming..still have a long ways to go.
  21. Replies
    7
    Views
    1,862

    Firstly: Why is that not valid? strcmp...

    Firstly:


    Why is that not valid? strcmp returns an interger value of 0 if the char* are the same. [NOTE] woops, sorry i was reading your corrected code instead of his original, sorry about that....
  22. Replies
    7
    Views
    1,862

    Try using the conversion function A2T() instead...

    Try using the conversion function A2T() instead of just trying to force a TCHAR

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_atl_string_conversion_macros.asp
  23. Replies
    4
    Views
    1,051

    the factorial (!) is a mathematical operator that...

    the factorial (!) is a mathematical operator that carries out degenerative multiplication. I.E.

    N!= N*(N-1)*(N-2)*(N-3)*....*(N-(N-1)).
  24. Replies
    12
    Views
    11,929

    ahh thanks daved.....you actually just solved a...

    ahh thanks daved.....you actually just solved a huge mystery in a processing program i was working on, i was wondering why i always had to subtract 2 from the return of size() instead of one just 1...
  25. Replies
    12
    Views
    11,929

    I see, this can be done with just one data...

    I see, this can be done with just one data structure to store your input, but as with most programming problems there are a million different ways to do the same thing! :) You should feel free to do...
Results 1 to 25 of 40
Page 1 of 2 1 2