Search:

Type: Posts; User: u_peerless

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,253

    Structure Pointer to Structure

    Hi C Coders,
    I have two query.
    Q1)

    I have two structures.


    typedef struct _Object {
    char objName[132];
    int bit;
  2. Replies
    5
    Views
    3,040

    Crash in a return statement

    Hi,
    I have a qs.



    int my_func()
    {
    int r;
    // Some statements
    return r; <<<< Here crash happens
  3. Replies
    11
    Views
    6,079

    Hi anon, you are correct, I did not do all this...

    Hi anon, you are correct, I did not do all this checkings. My intention was to know this thing. I have come to know this.
    Thanks all for your comments.
  4. Replies
    11
    Views
    6,079

    When I am using unintialized pointer, then it may...

    When I am using unintialized pointer, then it may have any value either NULL or arbitrary value, It can be seen if I do a printf statement on this unitialized pointer, then it will display some...
  5. Replies
    11
    Views
    6,079

    How To Chk Uninitialized Pointer

    Hi C Cders,
    I have a query in C Pointers.
    I have written a simple strcpy program.
    So from src to dest, it copies.


    #include <stdio.h>
    #include <conio.h>
    void my_strcpy(char *dst, char *src)...
  6. Thanks all for your reply. Finally I got the idea...

    Thanks all for your reply. Finally I got the idea behind this.
  7. ya that is the behavior of Virtual functions. But...

    ya that is the behavior of Virtual functions. But I want to know the internally how the vtable is being created to do like this. I know "this happens". But do not know "why happens". So I want to...
  8. Pure Virtual Function - Virtual Method Table

    Hi C++ Coders,
    Can you please help me regarding one thing.
    For pure virtual function, what are the entries created in the virtual method table.
    Say I have a program:


    class base
    {
    public:...
Results 1 to 8 of 8