Search:

Type: Posts; User: The Junglist

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    19
    Views
    3,423

    Here's a task for you : Write a program to...

    Here's a task for you :

    Write a program to merge a set of files into one file, then it must be able to split that file into the original files. The file names and file sizes can be stored in a...
  2. Replies
    35
    Views
    7,607

    Poll: I drink about 2-4 cups a day. But when I'm...

    I drink about 2-4 cups a day. But when I'm programming, I'll have a cup every one and a half hour or so.
  3. This cleared things up for me :

    This cleared things up for me :
  4. Could you please post some references, because I...

    Could you please post some references, because I would also like to know what the real deal is with arrays.
  5. Which one? From the quote or my statement?

    Which one? From the quote or my statement?
  6. Re: Re: ~

    That comes from here.


    Forgot to add this.

    An array name is a pointer to the first element of the array. The indexing used is exactly the same as for non-constant-pointers.
  7. Thread: How?

    by The Junglist
    Replies
    1
    Views
    1,201

    A message-box is a dialog-box, so just create...

    A message-box is a dialog-box, so just create your own dialog box, then put pictures on it if you want.
  8. >> printf("%d is less than %b", a, b); Try, ...

    >> printf("%d is less than %b", a, b);

    Try,

    printf("%d is less than %d", a, b);
  9. If you're using MSVC++, and the edit box is on a...

    If you're using MSVC++, and the edit box is on a dialog box, then you could use the class wizard to add a member variable for you.

    OR use this :

    CEdit m_myEditControl;
  10. Replies
    48
    Views
    9,136

    Poll: Drum 'n Bass!!!!!

    Drum 'n Bass!!!!!
  11. Replies
    3
    Views
    1,472

    #define MAX_OBJECTS 200 Object*...

    #define MAX_OBJECTS 200

    Object* MyObjects[MAX_OBJECTS];
    int i = 0;

    while( Answer == YES ) //Use an appropriate loop condition
    {
    MyObjects[i++] = new Object;
    }
  12. Replies
    2
    Views
    1,855

    Firstly, do a board search on gets() and...

    Firstly, do a board search on gets() and fflush(stdin) and read about why you shouldn't use them.

    Secondly, you didn't state what the problem was, i.e. what doesn't work, or what happens that's...
  13. Replies
    29
    Views
    7,336

    Re: quation here

    I ain't pode but anyway, i'm not sure 'bout Unreal sequels, but Quake 3 was written in "C".
  14. Replies
    17
    Views
    3,494

    Spend a little extra and get the GeForce 3.

    Spend a little extra and get the GeForce 3.
  15. Replies
    26
    Views
    5,188

    That's an understatement!!

    That's an understatement!!
  16. Replies
    1
    Views
    1,186

    Question about SideWinder gamepad

    My brother just bought a MS SideWinder gamepad, and i'm still struggling to get the hang of this thing. It's so sensitive, and damn hard to use.

    Is this because the controller is new or what?
  17. Thread: cout

    by The Junglist
    Replies
    5
    Views
    979

    Hmmmm........ it seems as if extra white spaces...

    Hmmmm........ it seems as if extra white spaces are automatically trimmed.

    Max, I know what you're asking, and you should try using the '\t' escape character.
  18. Replies
    17
    Views
    4,736

    His funeral was today. When I looked at him...

    His funeral was today. When I looked at him laying in the coffin, I couldn't control my tears.

    I was told today that he and his friends were being robbed. My friend was talking to someone on a...
  19. Replies
    39
    Views
    7,503

    hmmm..... the best lyrics, give it up to --> Kate...

    hmmm..... the best lyrics, give it up to --> Kate Bush:D

    The older ppl will know who she is.
  20. Replies
    39
    Views
    7,503

    Y'all are going on about Missy's one irritating...

    Y'all are going on about Missy's one irritating track. I actually like it. Many artists have wack songs, but they aren't known for those ones, instead, they are known for the ones that are good.
  21. Replies
    17
    Views
    4,736

    Life Sucks!!

    Monday night a very close friend of mine was shot dead point blank. The bastards who did it shot him five times, a bullet in each leg, one in the stomach, and two in the head. He was only 19 years of...
  22. Replies
    39
    Views
    7,503

    With that said, I urge you to read the lyrics and...

    With that said, I urge you to read the lyrics and listen to the flow of "The Notorious BIG".
  23. Replies
    2
    Views
    925

    #include #include ...

    #include <iostream.h>
    #include <fstream.h>
    #include "member.h"

    int main ()
    {
    int numofentries;

    ifstream infile("data.txt", ios::in);
  24. Replies
    2
    Views
    1,351

    >> fprintf(otpt, "%d", Tcount); You are...

    >> fprintf(otpt, "%d", Tcount);

    You are printing Tcount to the file, yet it hasn't been initialized.

    I think what you meant to do was this :


    Tcount = totalCount(count1, count2, count3,...
  25. Replies
    4
    Views
    1,087

    I don't know what it is you want to do, so I only...

    I don't know what it is you want to do, so I only got rid of the warnings/errors.



    #include<stdio.h>
    #include<conio.h>
    #include<ctype.h>
    #include<string.h>

    typedef char* token_t ;
Results 1 to 25 of 42
Page 1 of 2 1 2