User Profile

Collapse

Profile Sidebar

Collapse
drnrusu
drnrusu
Last Activity: Sep 19 '07, 09:11 PM
Joined: Sep 14 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • drnrusu
    replied to Message after compilation to turn on debugger
    in C
    I tried your code and it works perfect
    (I run it on a borlandc++ 3.1 on WinXp)...
    See more | Go to post

    Leave a comment:


  • drnrusu
    started a topic Copy constructur or bitwise copy
    in C

    Copy constructur or bitwise copy

    Hi I have a little c++ code but i'm not sure who makes the initialization for cp1.
    Here is the code(in borlandc++ 3.1):
    [code=cpp]
    class A{
    int i;
    public:A(int val){i=val;
    }
    A(A&a){i=a.i;
    }
    };
    void main()
    {
    A obj(1); A cp1(obj); A cp2=obj;
    }
    [/code]
    The question is how makes the initialization...
    See more | Go to post
    Last edited by sicarie; Sep 18 '07, 12:59 PM. Reason: Code tags

  • drnrusu
    started a topic Graphics in c/c++
    in C

    Graphics in c/c++

    I'm trying to figure up how are implemented the graphic function. For exemple what is the code for function lineto();
    This is the antent for it(in borlandc 3.1)
    short_far_linet o(short x,short y)

    If you know where( a site or something like this) can i found the code for graphic functions it would be greate.
    Also I would like to know how to see the content of a .lib file(i'm intrested to see the...
    See more | Go to post

  • drnrusu
    replied to pointers in c
    in C
    Your url =http://home.netcom.com/~tjensen/ptr/pointers.htm was very helpfully for me....
    See more | Go to post

    Leave a comment:


  • drnrusu
    replied to how to draw a dashed line in c
    in C
    This is a very intresting ideea of drawing a line. I'll try it....
    See more | Go to post

    Leave a comment:


  • drnrusu
    replied to How to convert a short into 2 chars.
    in C
    Thanks for solution I needed some time ago
    Anyway thanks again...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...