Search:

Type: Posts; User: oogabooga

Search: Search took 0.02 seconds.

  1. Remember that this *(w++) = *r; is...

    Remember that this


    *(w++) = *r;

    is equivalent to this


    *w = *r;
    ++w;
  2. It's easier to follow like this: // g++...

    It's easier to follow like this:


    // g++ -std=c++11 -Wall -Wextra unique.cpp

    #include <iostream>
    #include <iomanip>
    #include <vector>
    #include <set>
    using std::cout;
Results 1 to 2 of 2