Search:

Type: Posts; User: mdennis10

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,462

    would it be beneficial to make c++ my primarily...

    would it be beneficial to make c++ my primarily language or would it be better if i invested time learning another language
  2. Replies
    10
    Views
    1,462

    i actually did but i wanted a professional advice...

    i actually did but i wanted a professional advice from somebody that actually use the language
  3. Replies
    10
    Views
    1,462

    i actually did but i wanted a professional advice...

    i actually did but i wanted a professional advice from somebody that actually use the language
  4. Replies
    10
    Views
    1,462

    things i am curious about in C++

    i am a beginner C++ programmer and i have a couple question about C++. Firstly what are the advantages for use C++,over java and c.
  5. Replies
    9
    Views
    2,701

    need book recommendations

    i need a book that deals with win32 application in c++ in dev or visual studio both would be good.
  6. Replies
    2
    Views
    863

    Quick questions i was curious about

    1. What is the difference about static_cast and reinterpret_cast
    2. Can the data type of a pointer be explicitly converted. I tried doing a conversion with static_cast and reinterpret_cast
  7. Replies
    14
    Views
    1,183

    ok thanks

    ok thanks
  8. Replies
    14
    Views
    1,183

    i understand what you are saying but one of the...

    i understand what you are saying but one of the things i took in consideration was that if the user call the getDice function without first calling the setDice function it would creat a problem, so...
  9. Replies
    14
    Views
    1,183

    what exactly is soooo bad about it

    what exactly is soooo bad about it
  10. Replies
    14
    Views
    1,183

    i wanted to do this in OOD and that's why i used...

    i wanted to do this in OOD and that's why i used data members
  11. Replies
    14
    Views
    1,183

    the reason i did that is because i want each of...

    the reason i did that is because i want each of my functions to solve one problem. if i did not call setDice in getDice when i call the getDice function in main it would only return 0 ( note: i would...
  12. Replies
    3
    Views
    2,093

    Answer to these questions

    1. A(n)______________________is a group of related records.
    2. Digits, letters and special symbols are referred to as__________________.
    3. A group of related files is called...
  13. Replies
    14
    Views
    1,183

    what do you think about that code in regards to...

    what do you think about that code in regards to indentation and logic
  14. Replies
    14
    Views
    1,183

    this the implementation of the header that generates the numbers

    #include <iostream>
    #include "Dice.h"
    #include <ctime>
    using namespace std;

    /* Constructor that initializes data member */
    Dice :: Dice ()
    {
    dice1 = 0;
    dice2 = 0;
  15. Replies
    14
    Views
    1,183

    have a logic problem that i can't even see

    i write a program that use random numbers to simulate a dice. The problem is that when i roll the rice both random generates are give me the same number even thought i use the time function as the...
  16. Replies
    5
    Views
    1,641

    thanks it worked, but what exactly are include...

    thanks it worked, but what exactly are include guards and what instance do you need to use them
  17. Replies
    5
    Views
    1,641

    Have an error that i can't solve

    redefinition of 'class Data'
    previous definition of 'class Data'

    ---note--- Data is a class that i declare in a header file
Results 1 to 17 of 17