Search:

Type: Posts; User: mannyginda2g

Search: Search took 0.01 seconds; generated 58 minute(s) ago.

  1. Replies
    8
    Views
    4,430

    yes you're correct Xipher thank you.

    yes you're correct Xipher thank you.
  2. Replies
    8
    Views
    4,430

    I searched for some examples and I'm trying to...

    I searched for some examples and I'm trying to compile one and I'm getting an error saying: "fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory
    Error executing...
  3. Replies
    8
    Views
    4,430

    It's an operating systems class there's no code...

    It's an operating systems class there's no code that we learned whatsoever which sucks, I have no examples to reference.
  4. Replies
    8
    Views
    4,430

    Process Scheduling using fork()

    Hi I have to accomplish the following:

    Write a program that will consider the effects of process scheduling by using fork() system call. The write() system call is used instead of printf. The...
  5. Replies
    4
    Views
    1,366

    Help convert char to int

    I know how to convert a char to an int using atoi but how do I convert a single digit int to a char???? thanks.
  6. Replies
    4
    Views
    2,931

    furthermore should I use an array or linked-list...

    furthermore should I use an array or linked-list implementation
  7. Replies
    4
    Views
    2,931

    Prefix Expressions

    Hi the description of an assignment which I have to complete is shown below. I just need some help getting started, will I have to use a stack, queue, or both?

    Write a program to recognize and...
  8. Thread: Some help

    by mannyginda2g
    Replies
    2
    Views
    829

    Some help

    I'm currently devoloping code for a version of the game Connect 4 that was assigned to me and right now I'm at the initial stages. My problem is getting the move from the player and putting it on...
  9. Replies
    18
    Views
    7,308

    Thanks guys, nah I did read the FAQ, it helped. ...

    Thanks guys, nah I did read the FAQ, it helped. It's all love don't worry about it.
  10. Replies
    18
    Views
    7,308

    It's part of an assignment. We have to make a...

    It's part of an assignment. We have to make a version of the Game "Connect Four" and we're asked to clear the screen so that we can redraw the board.
  11. Replies
    18
    Views
    7,308

    When I try to use it, I get an error message...

    When I try to use it, I get an error message saying undeclared indentifier on Visiual C++. Do I have to include any header files?
  12. Replies
    18
    Views
    7,308

    Need Clr Screen Code

    Does anyone know how I can clear the screen of my program without just putting a bunch of endl; or \n; ??
  13. Replies
    7
    Views
    1,163

    Thanks a lot twm! I wasn't thinking straight. I...

    Thanks a lot twm! I wasn't thinking straight. I didn't see main as a function. That helps a whole bunch.
  14. Replies
    7
    Views
    1,163

    Here's my entire program: ...

    Here's my entire program:



    #include<iostream>
    using namespace std;

    double larger(double, double);

    void main()
  15. Replies
    7
    Views
    1,163

    Here's a very simple function that I tried. ...

    Here's a very simple function that I tried.


    double larger(double x, double y)
    {
    if (x >= y)
    return x;
    else
    return y;
  16. Replies
    7
    Views
    1,163

    Visual C++ Help!!

    For some reason everytime I try to compile a program that has a function in it, I get the following error:

    "error C2601: 'larger' : local function definitions are illegal
    Error executing cl.exe."...
Results 1 to 16 of 16