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

Search:

Type: Posts; User: anundal

Search: Search took 0.02 seconds.

  1. Re: Noob needs easy help with command line interface

    GCDEF,
    Just wanted to let you know that this:
    "Go under the project properties and look at the debugging settings. You can specify command line arguments in there."
    was the ticket. Got it working...
  2. Re: Noob needs easy help with command line interface

    GCDEF,

    I know how to create, build and run and debug a project through the visual studio GUI, but I don't know how to pass arguments like those required for


    int main(int argc, char* argv[])
    ...
  3. Noob needs easy help with command line interface

    Hi,

    I am a total idiot when it comes to command line interfaces. Unfortunately I was too young to use the family apple 2c before it was replaced by a windows computer :-(

    Here is my problem. I...
  4. Replies
    7
    Views
    12,590

    Re: A custom pyramid-drawing program

    Good advice. I got it to work, but the process of getting there was not pretty. Thanks for the help. Hopefully next time I can be more systematic and less trial and error. Programming is sure making...
  5. Replies
    7
    Views
    12,590

    Re: A custom pyramid-drawing program

    Unfortunately, it needs to be able to print an even numbed base, too, even if it looks like this:



    *
    **
    ****
    ******
    ********
  6. Replies
    7
    Views
    12,590

    Re: A custom pyramid-drawing program

    Okay, so I now can create a nice looking triangle for odd numbered user inputs, but how would I format it so that it doesn't round down to an odd number if the user inputs an even number? It seems...
  7. Replies
    7
    Views
    12,590

    A custom pyramid-drawing program

    Write your question here.
    Okay, so I am trying to figure out how to create a program that will draw a triangle using *'s with a base the has a user-inputted number of *'s like so:

    *
    *** ...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured