Search:

Type: Posts; User: evilmonkey

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,307

    Sending Keystrokes

    Hi,

    When I used Visual Basic there was a function called SendKeys() that would enable me to simulate keystrokes.

    I was wondering if anyone could tell me how to do this from C++, or even what...
  2. Replies
    9
    Views
    2,242

    No actually for something as simple as this, your...

    No actually for something as simple as this, your the one whos too lazy to type "C++" into google...

    Here's some ideas since you are that incompetant:

    Go to sourceforge.com and examine other...
  3. Replies
    7
    Views
    6,070

    Passing array as argument?

    Hi,

    Just out of curiosity, how do I pass an array as an argument by value instead of by reference?

    Is the only way to send the pointer of the array and then copy it manually?

    Thanks in...
  4. Replies
    6
    Views
    1,987

    wow

    That works really well, much simpler than the method(s) in the faq...

    Thanks!
  5. Replies
    6
    Views
    1,987

    sorry...

    whoops
  6. Replies
    6
    Views
    1,987

    Clear Screen

    Hi,

    This probably seems like a stupid question, but what is the best way to clear the screen of a console application?

    I've tried cout.clear(), but I am unsure what arguments need to be passed....
  7. Thread: cin / scanf

    by evilmonkey
    Replies
    3
    Views
    1,978

    cin / scanf

    Hi,

    Can somebody please help me out?

    Consider the following snippet:

    cout << "Enter your name: ";
    cin >> n;

    cout << "Hello " << n << "!" << endl;
  8. Thread: cout

    by evilmonkey
    Replies
    1
    Views
    908

    cout

    Hello,

    Could someone please tell me how to format data using cout?

    For example, when using printf if I wanted to print out a floating point number to 2 decimal places I would do:
    ...
  9. Thread: FAQ cout

    by evilmonkey
    Replies
    1
    Views
    50,115

    Sticky: cout

    Hello,

    Could someone please tell me how to format data using cout?

    For example, when using printf if I wanted to print out a floating point number to 2 decimal places I would do:
    ...
  10. Replies
    4
    Views
    2,178

    Thanks, thats made things a bit clearer, like I...

    Thanks, thats made things a bit clearer, like I said. I still have lots to learn.
  11. Replies
    4
    Views
    2,178

    Printf arguments

    Hi,

    I just started learning c/c++, and am asking this question out of pure curiosity.

    Look at this code snippet:

    #include <stdio.h>

    int main()
    {
  12. Replies
    3
    Views
    1,586

    Thanks! Thats just what I was looking for.

    Thanks! Thats just what I was looking for.
  13. Replies
    3
    Views
    1,586

    ANSI Functions

    I just have one question, I'm trying to learn C, and one thing that would really help me is if I had a complete list of all the ansi functions, with perhaps an explanation of what each one does. I've...
Results 1 to 13 of 13