Sunday, January 1, 2017

C++ Pointer and Adress example with C# class and Interfaces


C++ Pointer and Adress example with C# class and Interfaces

*   Pointer
&  Adress

example :

int Add(int *a,int *b)
{
    return a+b;
}

int main()
{
   printf("sum : " , Add(&a,&b);
}

Example with class and interfaces


No comments:

Post a Comment

Note: Only a member of this blog may post a comment.