CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: EsX_Raptor

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,008

    Re: help with c++

    What an ambiguous question. What do you exactly mean with "The Program should search for the payroll code in the code in the file"? Will your program need to read some type of code to perform...
  2. Replies
    2
    Views
    740

    Application Hanging

    I'm creating a Windows application using Microsoft Visual C++ 2008.

    I successfully created a GUI and programmed all of its functionality. However, when I run certain functions my application will...
  3. Replies
    0
    Views
    3,823

    Pictures in Raw PGM Format

    I have no problem reading and writing ASCII-format PGM files.

    However, when I try to read a raw-format PGM file, my program goes nuts. I've read that some people have been successful at reading...
  4. Thread: Matrices

    by EsX_Raptor
    Replies
    1
    Views
    668

    Matrices

    I was wondering if there's a standard Matrix creation and manipulation library for VC++. Say, an include which lets you create Matrix objects which you can give sizes to, invert, multiply and all of...
  5. Replies
    1
    Views
    750

    file.open(address); // ERROR

    I have a problem.

    My program is prompting the user for a file address like this:

    // ...
    string address;
    cout << "Enter file address:\n";
    cin >> address;
    file.open(address);
    // ...
  6. Replies
    6
    Views
    1,129

    Loop Imitations

    Hi!

    As some of you may know, I'm currently learning C++ and would like to know something; I know that many of the loops in C/C++ can be represented using a regular while loop. In the following...
  7. Replies
    26
    Views
    2,775

    Re: a = b; Help?

    sorry, but i'm not "just looking for a friend."

    i just saw the guy is pretty new to C++ and wanted to be his friend because i like helping others.

    if i was "just looking for a friend" I'd be...
  8. Replies
    26
    Views
    2,775

    Re: a = b; Help?

    btw GCDEF you ever heard of a term called "friendship?"

    wait lemme google it
  9. Replies
    3
    Views
    581

    Re: how to trace this code on paper..

    why don't you do both using the compiler and on paper at the same time, and see where you went wrong?
  10. Replies
    26
    Views
    2,775

    Re: a = b; Help?

    lol this sites got the pms blocked
  11. Replies
    26
    Views
    2,775

    Re: a = b; Help?

    yo,

    if you ever get stuck on anything, feel free to send me a pm, etc.
  12. Replies
    26
    Views
    2,775

    Re: a = b; Help?

    I recommend you pick up a really, really basic (for super beginners) book on C/C++.

    Anyways.

    Think of a, b, and c as memory locations because in C/C++ that's what they are.
    e.g.
    Whenever you:...
  13. Replies
    2
    Views
    520

    Re: *sigh* File I/O

    thank you for the quick response, im having such a crappy day... -____-
  14. Replies
    2
    Views
    520

    *sigh* File I/O

    #include <fstream>
    #include <string>

    // ...

    string address = "";

    // ...

    int main()
  15. Replies
    5
    Views
    1,047

    Re: Problem Solving

    lmao

    did you even bother reading my question at all?

    I clearly stated this isn't a homework assignment. Let me repost it for you: This is a problem that was handed out to us during a...
  16. Replies
    5
    Views
    1,047

    Problem Solving

    So we had a programming tournament at my university on friday and we were given 6 problems. One of them I didn't understand at all and would like to ask you guys to give me some general pointers as...
  17. Thread: Help!!

    by EsX_Raptor
    Replies
    7
    Views
    5,701

    Re: Help!!

    Learn the class syntax



    class myClass
    {
    public:
    // here goes stuff that controls my data
    private:
    // here goes my data
  18. Replies
    1
    Views
    607

    Re: about #define

    #ifndef HEADER_NAME_H
    #define HEADER_NAME_H
    // ...
    #endif


    Those are things that are added to header files to avoid re-definition of its contents. It is a convention now to add that every...
  19. Re: Recursive Functions and Fibonacci numbers... (noobie help)

    Time is so easy.



    #include <windows.h>

    int startTime, endTime;

    startTime = timeGetTime(); // gives you a time in milliseconds
  20. Replies
    8
    Views
    1,263

    Re: [Newbie] Putting variables into an order

    Hi man! I'm new here too, but I've been programming for almost two years now (I still have some terrible issues though), but I'll see if I can help :)

    First of all, it is best for you to put all...
  21. Thread: Hi I'm New!

    by EsX_Raptor
    Replies
    1
    Views
    629

    Hi I'm New!

    Hello!

    I'm a Computer Science student at the University of Houston.

    I've been having problems lately not programming in C++, but rather just coming up with a way to organize my thoughts before...
Results 1 to 21 of 21





Click Here to Expand Forum to Full Width

Featured