Search:

Type: Posts; User: cr_2k

Search: Search took 0.00 seconds.

  1. Thread: '&' and '*'

    by cr_2k
    Replies
    5
    Views
    1,157

    * is basically the deferencing operator. & is...

    * is basically the deferencing operator.
    & is the address of operator.
    & is also used to declare reference variables.
    * is used to declare a pointer type variable.
    int *p=&i;//p is pointing to...
  2. Thread: c++

    by cr_2k
    Replies
    3
    Views
    952

    c++

    Why is array of references not allowed??
Results 1 to 2 of 2