Search:

Type: Posts; User: vijay s

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,266

    Dynamic Array - Size

    Hi Folks

    How to find the size of dynamic Array.....
    Can sizeof be used or .. .
  2. Replies
    6
    Views
    1,318

    @DeadPlanet Thanks for the link you provided.....

    @DeadPlanet
    Thanks for the link you provided.. i hope below prototype is correct ..

    function returning pointer to a function with two int arguments that returns int

    int (*pfunc(int ))(int,...
  3. Replies
    6
    Views
    1,318

    Interview question

    Hi folks
    i faced this interview question in Bosch... they asked me to write prototype fora function that returns pointer to a function that returns integer

    please let me know the...
  4. Replies
    3
    Views
    972

    Function Pointer

    hai
    Recently i'm studying abt Function Pointers. i came across the text that Function Pointer is used in Memory Resident program. i Googled but nothing i can found.. can any body share what is...
  5. Replies
    2
    Views
    7,678

    Double pointer & Two Dimensional Array

    Why Below Program Produces Segmentation error



    void print_arr(float **p)
    {
    printf(" 0 %f 1 %f 2 %f\n",p[0][0],p[0][1],p[0][2]);
    }

    void main()
  6. Thread: with Function

    by vijay s
    Replies
    3
    Views
    1,276

    with Function

    in Embedded systems point of view...

    is there any way to store a function at particular address....
    and to run a specified function from RAM...
  7. Replies
    1
    Views
    20,107

    union inside structure

    where union inside structure is used....

    as i know structure inside union is used when we need to access the variable of abstract type and also its lower part ...
    ex.., individual bit of integer...
  8. Replies
    3
    Views
    968

    thanks....

    thanks....
  9. Replies
    3
    Views
    968

    Array and pointer

    hai i have doubt with pointer

    char *p ="Hello World"

    with this declaration i can able to read the content of each character
    e.g. Chr = *(p + 2);

    but i can't able to write the character in...
  10. Replies
    1
    Views
    3,259

    Difference in C

    what is the difference between

    getc(),getch(),getche().... similarly putc(),putch(),putche().....
  11. Thread: Typedef

    by vijay s
    Replies
    2
    Views
    1,569

    Typedef

    what is this



    typedef int (*pfunc)(void);
    pfunc Foo;



    i have used typedef but not like this..
Results 1 to 11 of 11