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

Search:

Type: Posts; User: C++orbust

Search: Search took 0.04 seconds.

  1. Re: setw( ) I almost understand, but I'm getting some weird results.

    Thanks. I got it.

    I saw it used here:


    // output each array element's value
    for ( int j = 0; j < 10; j++ )
    {
    cout << setw( 7 )<< j << setw( 13 ) << n[ j...
  2. setw( ) I almost understand, but I'm getting some weird results.

    I'm using TutorialsPoint C++ examples to figure some things out, and though I've figured out what I can, I cannot tell why my output isn't going the way I want with the setw() "method"?

    As you can...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured