Search:

Type: Posts; User: maneesh

Search: Search took 0.00 seconds.

  1. hi .... can you try this link: ...

    hi ....

    can you try this link:

    http://www.cplusplus.com/ref/iostream/iomanip/setprecision.html

    cio
  2. Well...when I encounter similar problems in unix,...

    Well...when I encounter similar problems in unix, I search for the pattern lets say Vector3 in the "/usr/include" directory and then find the appropriate header. It may also so happen that vector.h...
  3. Replies
    3
    Views
    1,442

    Problems with exceptions

    I have a problem with handling exceptions. It is as below:

    I have a class lets say ABC (in ABC.h):


    class ABC {
    public:
    ABC(const char *name="ME";
    ...
  4. The answer needs to be x=5 and y=21 The...

    The answer needs to be x=5 and y=21

    The reasoning is very simple - scope of the variables. x takes a valude of 5 globally and hence does not get modified inside main() . However main() has local...
  5. Replies
    2
    Views
    2,159

    Awesome!! Thank you...hk_mp5kpdw

    Awesome!!
    Thank you...hk_mp5kpdw
  6. Replies
    2
    Views
    2,159

    Problems with skipws

    The program :
    ================


    #include <iostream>
    using namespace std;

    int main () {
    int n;
    cin >> skipws >> n;
Results 1 to 6 of 6