Search:

Type: Posts; User: EvilPickles

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,186

    WTF MS VC++ wont compile

    I have Microsoft visual C++ express edition and it will no longer compile. I just don't know what is wrong. It used to output every error and information in the build section of the screen, but now...
  2. Replies
    18
    Views
    3,112

    I know this is probably a bump, after such a long...

    I know this is probably a bump, after such a long time since originally being posted. I thought I posted a reply to this and posted it, I don't know what happened.

    Doug I understand how the book...
  3. Replies
    18
    Views
    3,112

    I apologize to itsme86, I reacted the way I did...

    I apologize to itsme86, I reacted the way I did because the moment I joined a server in the game I play, I got hounded by the entire server (a large grpup of idiots), about a post I once made here. I...
  4. Replies
    18
    Views
    3,112

    Twomers 1st post, I didn't understand that for a...

    Twomers 1st post, I didn't understand that for a while, but I mention that I figured that part out in the end, you did not have to explain that out (Althoug you did explain it differently and more...
  5. Replies
    18
    Views
    3,112

    bitwise operators?

    Ok I've gotten so far intomy book, that it is discussing bitwise operators. It has explained how the And works, I understand that now (although it took some time).

    What I do not get is how this...
  6. I am having a hard time understanding this...

    So here's the code:


    #include <iostream>
    using namespace std;
    int main() {
    int t,i, nums[3][4];
    for(t = 0; t < 3; ++t){
    for(i=0;i < 4; ++i) {
    nums[t][i] = (t*4)+i+1;
  7. Replies
    5
    Views
    1,734

    nested for statements

    I do not understand what happens when you have more than one for statements in the same block! I am messing around trying to make a program that reverses whatever you type in (I did this type of...
  8. Replies
    2
    Views
    1,448

    Rand() won't be random

    Code:
    #include<iostream>
    #include <cstdlib>
    using namespace std;
    int main() {

    int guess, secretnumber;
    secretnumber = rand();

    cout << "Guess the number: ";
  9. Replies
    3
    Views
    866

    Ahh,, I see! It all seems so simple now! I wonder...

    Ahh,, I see! It all seems so simple now! I wonder how I missed that :P Sometimes judgement just fails sometimes ya know?

    Also, I already know what loops do, they are quite easy to figure out :P
  10. Replies
    3
    Views
    866

    Need help with this

    Right, so I picked up this tutorial a couple days ago, it went pretty good, until I got to the array part of the turorial.

    Code:


    billy[0] = a;
    billy[a] = 75;
    b = billy [a+2];...
  11. Replies
    4
    Views
    2,062

    This sites needs WORK.

    I've gotten as far as lesson 9 in the C++ made easy tutorials, and found the lessons after that written very badly. I don't understand some stuff, due to frequent mis-spellings, and many things left...
  12. Replies
    1
    Views
    1,199

    Just wanna...

    I want to be able to read the tutorials on this site while I'm at school (during lunchbreak) but I don't know how I could print off the tutorials onto paper! I don't even have a printer anymore, so...
  13. Replies
    12
    Views
    2,564

    Most if not all programming languages are very...

    Most if not all programming languages are very similar. They generally use the same words and phrases. Albeit in different ways and functions.


    For instance in C programming you must end a...
  14. Replies
    5
    Views
    1,052

    Probably a basic question, but...

    I don't understand how I could make a program repeat itself.

    The entire program, or most of for at least.

    This is the program:


    #include <stdio.h>

    int main()
Results 1 to 14 of 14