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

Search:

Type: Posts; User: Thoungba

Search: Search took 0.03 seconds.

  1. Replies
    14
    Views
    2,110

    Re: Learn all programing languages

    Can you post an example ?

    Believe me I see how odd people are when they rewite the whole long module in assembly that is definitly out of place and lowers readability of the code
  2. Replies
    6
    Views
    1,010

    Re: template arguments

    Yes it is nice
    I also came accross such a strange way to coding with structs, that's why i attempted to write one solving a gcd problem

    Thanks Speedo it looks so good the recursive structs ...
  3. Replies
    6
    Views
    956

    Re: fstream coding.

    ifstream f(inputfile, ios-base::in);
    ofstream of(output,ios_base::out);
    string s="";
    whiole(f>>s)
    {
    of<<s;
    }

    i guess this also works for you
  4. Replies
    0
    Views
    1,153

    initializing a string --newb question

    I am using MSVC08 and would like to embed a piece of asm code to initialize a string inside the function

    _asm
    {
    mov ecx dword ptr ...,offset "string"
    }

    I wonder how the memory layout...
  5. Replies
    1
    Views
    953

    Firefox browser

    I would like to know how the Firefox is created

    What programming language has been used ? I like the browser's functionality and many more embedded within

    Thank you
  6. Replies
    15
    Views
    2,001

    Re: Lost in translation

    Perhaps you two are hacked. :confused:
  7. Replies
    6
    Views
    1,010

    template arguments

    template<int x, int y>
    struct X
    {
    // do something then
    recall the X<value1, value2>::value;
    int value;
    };

    I do something like that and I get errors compiling the code
    Why calling...
  8. Replies
    8
    Views
    1,641

    Re: Overloading operator new[] and operator[]

    You are rich,
    I am sticky and jealous!
  9. Replies
    15
    Views
    2,001

    Re: Lost in translation

    Maybe you are hacked!
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured