Forum: C Dec 28th, 2007 |
| Replies: 16 Views: 8,530 Seems I could not present myself correctly...
Heap and Virtual memory are different
see this for heaps
http://msdn2.microsoft.com/en-us/library/aa366711(VS.85).aspx
This... |
Forum: C Dec 21st, 2007 |
| Replies: 28 Views: 1,946 You can use component object modeling, runtime polymorphism, Pure virtual functions.
Dlls (Dynamicly linked library)
Thanks,
Prateek |
Forum: C May 12th, 2006 |
| Replies: 2 Views: 1,112 hi
There are two things first
const double *highest = a;
this line says highest is a pointer to a costant means u cant change the content highest is pointing to, next
if (a[i] > *highest)
... |