Search:

Type: Posts; User: aamirsherkhan

Search: Search took 0.01 seconds.

  1. Thread: Arrays

    by aamirsherkhan
    Replies
    6
    Views
    1,145

    Arrays

    hi
    Can anyone tell me how can i return a array of three integers form a function;



    int funtion()
    {
    int array[]={ 2,3,4 };

    return array[];}
  2. Replies
    153
    Views
    695,810

    Sticky: object oriented programming by robert...

    object oriented programming by robert lahfore
  3. Thread: pointers

    by aamirsherkhan
    Replies
    3
    Views
    1,007

    according u urs program a is equal to 20

    according u urs program a is equal to 20
  4. Thread: pointers

    by aamirsherkhan
    Replies
    3
    Views
    1,007

    pointers

    is
    int *p;
    p=&i; same as *p=&i
  5. Replies
    2
    Views
    1,660

    Callback fuction

    would any body tell me about the concept behind callback functions
  6. Thread: #define

    by aamirsherkhan
    Replies
    2
    Views
    1,054

    #define

    i got the answer
  7. Thread: header

    by aamirsherkhan
    Replies
    6
    Views
    1,489

    thanks its done

    thanks its done
  8. Thread: header

    by aamirsherkhan
    Replies
    6
    Views
    1,489

    its in my documents now should i use...

    its in my documents now should i use
    #include"C/Documents and Settings/my Documents/header.h"
  9. Thread: header

    by aamirsherkhan
    Replies
    6
    Views
    1,489

    dont working

    i have tried it but its still not working
  10. Thread: header

    by aamirsherkhan
    Replies
    6
    Views
    1,489

    header

    i have created a header file with extension .h
    i m using dev-c++ compiler
    in my program i try to include it by using
    #include"headername"
    but its not working
    i have saved the headerfile in...
  11. Thread: pointers

    by aamirsherkhan
    Replies
    3
    Views
    1,105

    pointers

    int i=24;
    int* poin;
    *point=i;
    cout<<*poin;
    cout<<poin;
    cout<<&i;
    why pion and &i does not show the same results as poin contain the address of i and &i means adress of i
Results 1 to 11 of 11