Search:

Type: Posts; User: mikebrewsj

Search: Search took 0.01 seconds.

  1. Replies
    174
    Views
    21,324

    too bad its not your game

    this game was posted last christmas. good try though pretending that it is your game. come stronger next time faker.
  2. Replies
    9
    Views
    1,095

    yo frenchfry...just to clear something up. it's...

    yo frenchfry...just to clear something up. it's not my first program, just on spring break and don't have my ms visual basic 6.0 at my girlfriends home. also, just because i just started on these...
  3. Replies
    9
    Views
    1,095

    Bloodshed version 4 help

    when i execute, the ms-dos execution screen pops up and then immediatly closes and i can not run my program. any ideas how to fix this in bloodshed version 4.:mad:
  4. Replies
    174
    Views
    21,324

    this is a non-game related question.... i'm...

    this is a non-game related question....

    i'm using bloodshed as well and i have a problem when i execute. the ms-dos execution screen pops up and then immediatly closes and i can't execute the...
  5. Replies
    10
    Views
    5,401

    so without an exit(1) statement, it would be an...

    so without an exit(1) statement, it would be an infinite loop...?
    thanks, I get it now.
  6. Replies
    10
    Views
    5,401

    Functions calling themselves...?

    is it legal for a function to call itself as in:

    int sum(int n)
    {
    if(n==0)
    return 0;
    else
    n+sum(n-1);
    }
  7. Replies
    1
    Views
    896

    Scope question

    Is the function main considered a block? I don't think it has file scope. I don't know if its function, file, or block scope.
  8. Thread: Dev-C++

    by mikebrewsj
    Replies
    14
    Views
    2,009

    Thanks to everyone.....the worked. wow...

    Thanks to everyone.....the <conio.c> worked. wow what a hassle. THanks a lot though....
  9. Thread: Dev-C++

    by mikebrewsj
    Replies
    14
    Views
    2,009

    still didn't work....i don't know what's up but i...

    still didn't work....i don't know what's up but i am downloading borland 5.5 now....hopefully i won't have the same problem....
  10. Thread: Dev-C++

    by mikebrewsj
    Replies
    14
    Views
    2,009

    then i get the error message: implicit...

    then i get the error message:

    implicit declaration of function `int getch(...)'
  11. Thread: Dev-C++

    by mikebrewsj
    Replies
    14
    Views
    2,009

    i put: int getch(); at the beginning, in...

    i put:

    int getch();

    at the beginning, in the main, and at the end and nothing works....
  12. Thread: Dev-C++

    by mikebrewsj
    Replies
    14
    Views
    2,009

    im not familiar with getch

    can someone help me on how to use it....
  13. Thread: Dev-C++

    by mikebrewsj
    Replies
    14
    Views
    2,009

    Dev-C++

    I have Dev-C++ and when I execute the program, the Dev-C++ screen minimizes and the executable screen pops up, but for only a second and then the Dev-C++ screen pops back up. I am not able to run my...
  14. Replies
    2
    Views
    931

    C++ Compiler

    im on winter break and i need a c++ compiler. does anyone know where i can get a c++ compiler for free download?
  15. Replies
    2
    Views
    3,468

    bitwise-exclusive-OR operator: ^

    Can someone please explain to me the ^ operator. I understand it in terms of zeros and ones, but not when integers are involved.

    I have the answers to the questions, but I don't understand why:
    ...
  16. Replies
    2
    Views
    22,865

    exponential operator

    I am having problems with precedence. I am looking at a study guide and it says that:

    2^4/2*3

    is equal to 4 (where ^ is the exponential operator). And also,

    4^3/2/3/2

    is equal to 4...
  17. Replies
    2
    Views
    1,566

    These are not homework, but study questions for a...

    These are not homework, but study questions for a challenge exam. I can not find them in my book and the website where the answers are located has been down for a week. I am just asking for help...
  18. Replies
    2
    Views
    1,566

    Test questions for C++....help!

    1) What is the header file used in programs that mix C and C++ I/O?

    a) stdio.h
    b) stdlib.h
    c) stdiostream.h

    2) A member function can be declared static if it does not access _____ class...
Results 1 to 18 of 18