Search:

Type: Posts; User: vasiqshair

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    3,171

    If that were true, then the value of place should...

    If that were true, then the value of place should be zero (as that is what it initially started out with). The fact that it's 1 has baffled me.
  2. Replies
    7
    Views
    3,171

    #include #include using...

    #include <iostream>
    #include <string>

    using namespace std;

    string swtch(string topermute, int x, int y)
    {
    string newstring = topermute;
    newstring[x] = newstring[y];
    newstring[y] =...
  3. Replies
    7
    Views
    3,171

    Programming Challenge: Permutations

    My question refers to the Programming Challenge section of the website wherein one of the challenges is about determining the Permutations of a string. That solution of that program has me pulling my...
Results 1 to 3 of 3