Search:

Type: Posts; User: blakjakd

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,011

    Easy Array Question

    I'm on the array section of the the tutorial and was playing around with them and was wondering a couple of things.
    In what situations are arrays used in programming?
    Are there any simple (and I...
  2. Replies
    8
    Views
    1,864

    Sweet thank you! But i don't understand if int x...

    Sweet thank you!
    But i don't understand if int x is bellow int main(), why in cprogramming's tutorial it puts void playgame, void loadgame, and void multiplayer above int main()
    (that probably...
  3. Replies
    8
    Views
    1,864

    I tried the second code from the bottom of the...

    I tried the second code from the bottom of the website -

    switch (x) {
    case 1:
    cout << "x is 1";
    break;
    case 2:
    cout << "x is 2";
    break;
    default:
  4. Replies
    8
    Views
    1,864

    It doesn't work with codeblocks compiler for me...

    It doesn't work with codeblocks compiler for me
    unless I'm doing something wrong
  5. Replies
    8
    Views
    1,864

    Help me with switch case!

    I have gotten stuck on switch cases, I've looked everywhere, the forums and other c++ websites and I can't get a simple switch case to work for me

    I tried to find a working switch case example on...
  6. Replies
    4
    Views
    1,186

    what do you mean by not returning anything?

    what do you mean by not returning anything?
  7. Replies
    4
    Views
    1,186

    Void? Help me!!!!!

    I've been making lots of progress in C++ in the last couple of days.

    But when I got to the part on the tutorial about switch case, it introduced the word "void"
    Because there is no explanation, I...
  8. Replies
    4
    Views
    2,562

    would anyone mind giving me a couple more easy...

    would anyone mind giving me a couple more easy problems like these?

    A. !( 1 || 0 ) ANSWER: 0
    B. !( 1 || 1 && 0 ) ANSWER: 0 (AND is evaluated before OR)
    C. !( ( 1 || 0 ) && 0 ) ...
  9. Replies
    4
    Views
    2,562

    Thank you guys so much! I understand it now alot...

    Thank you guys so much!
    I understand it now alot more
  10. Replies
    4
    Views
    2,562

    Help me with boolean algebra!!!

    I have just started getting into to C++ programming and was reading the tutorial on this website.
    When I got to the part about boolean algebra i got stuck
    This came straight from Wikipedia....
Results 1 to 10 of 11