Search:

Type: Posts; User: Okiesmokie

Page 1 of 16 1 2 3 4

Search: Search took 0.02 seconds.

  1. I don't even know what to say about this, but why...

    I don't even know what to say about this, but why is it there? I wouldn't think this would even compile o_O;

    Edit: using namespace std; is generally bad practice aswell.
  2. Replies
    6
    Views
    4,026

    Importing the entire namespace is generally not...

    Importing the entire namespace is generally not reccomended.
  3. Replies
    35
    Views
    9,710

    I'm pretty sure that Mario 64 shipped with the...

    I'm pretty sure that Mario 64 shipped with the N64, for a little while atleast.
  4. Replies
    7
    Views
    1,310

    Why not just define it as: deck_t...

    Why not just define it as: deck_t create_deck(deck_t *deck_ptr) ?

    Also, syntax errors here:

    for (j = 1; j < 14; j++)
    {
    deckptr -> value = j;
    deckptr -> suit =...
  5. Replies
    16
    Views
    2,026

    Which search terms would you have searched for,...

    Which search terms would you have searched for, being him. He described it as a function list/reference. He didn't know what it was called, obviously. An annoying forum troll is all that you are.
  6. Replies
    9
    Views
    1,870

    If you are using the ++ operator before the...

    If you are using the ++ operator before the variable name, the first thing that happens is the variable is incremented. Which is the exact opposite of using ++ after the variable name, it will...
  7. Replies
    16
    Views
    2,026

    Google is not the answer for this. MSDN is. ...

    Google is not the answer for this. MSDN is.

    http://msdn2.microsoft.com
  8. Thread: password

    by Okiesmokie
    Replies
    11
    Views
    1,406

    x_x Thought that was the original poster replying...

    x_x Thought that was the original poster replying to:


    What a waste of a long helpful post :(
  9. Replies
    6
    Views
    5,642

    if you're talking about addresses, you would have...

    if you're talking about addresses, you would have to do something like:


    unsigned long ValueAtAddress = (*(volatile unsigned long *)0x0000000D);
    But you have to be sure that your program has...
  10. Thread: password

    by Okiesmokie
    Replies
    11
    Views
    1,406

    Wrong library to be using with printf() and...

    Wrong library to be using with printf() and scanf(). Try stdio.h instead.


    You need to either allocate memory to store the string, or store the string on the heap using a predefined array.
    ...
  11. Replies
    1
    Views
    1,301

    Incorrect statement in the tutorial

    Hello, haven't been here in a few years, but I was just browsing through the C Tutorials and noticed that in this one: http://www.cprogramming.com/tutorial/c/lesson9.html people are instructed to use...
  12. read the board FAQ

    read the board FAQ
  13. Replies
    52
    Views
    4,201

    Oopps, in the post i Said "C tutorials" i ment...

    Oopps, in the post i Said "C tutorials" i ment "C++ Tutorials"
  14. Replies
    52
    Views
    4,201

    you are at a place that has C tutorials: ...

    you are at a place that has C tutorials:

    http://www.cprogramming.com
  15. Thread: fading text

    by Okiesmokie
    Replies
    3
    Views
    2,242

    you _could_ make the text white, wait awhile,...

    you _could_ make the text white, wait awhile, make the text grey, wait awhile, then make the text black, that would give you the illusion of fading
  16. >> using namespace std; he doesnt need to use...

    >> using namespace std;

    he doesnt need to use std:: if he declares the namespace
  17. Replies
    5
    Views
    2,772

    View Post

  18. Thread: My Own OS

    by Okiesmokie
    Replies
    22
    Views
    2,815

    Go look at the source code to my s00per l337...

    Go look at the source code to my s00per l337 Operating System ;)
    http://www.SteveOS.tk
  19. Replies
    7
    Views
    1,905

    oh woops, i mis read the question, sorry.

    oh woops, i mis read the question, sorry.
  20. Replies
    6
    Views
    2,093

    is cprintf() the same as printf()? if so,...

    is cprintf() the same as printf()?

    if so,
    cprintf("%d", number);
  21. Replies
    6
    Views
    1,568

    >> on NT cored systems, it is user specific. ...

    >> on NT cored systems, it is user specific.

    Thats true, on NT, 2K and XP, you have to get the username, and then put it in "C:\Documents And Settings\USERNAME\Start Menu\Programs\Startup\" (is...
  22. Replies
    9
    Views
    2,931

    yea, my mistake, they are both correct

    yea, my mistake, they are both correct
  23. Oh, there is a strcmpi(), ive always used...

    Oh, there is a strcmpi(), ive always used stricmp()
  24. Replies
    9
    Views
    2,931

    you dont need to use strupr(), there is a...

    you dont need to use strupr(), there is a version of strcmp that is not CaSe SeNsAtIvE, its stricmp()
  25. >> use strcmpi(). typo? its stricmp()

    >> use strcmpi().

    typo? its stricmp()
Results 1 to 25 of 390
Page 1 of 16 1 2 3 4