Forum: C Dec 28th, 2007 |
| Replies: 16 Views: 8,551 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 24th, 2007 |
| Replies: 12 Views: 1,416 You are not moving the cursor at right place before you do a "cout"
Ycan move cursor by including one more function in your point class
in point.h
add a member funtion in the point class
void... |
Forum: C Dec 21st, 2007 |
| Replies: 28 Views: 1,950 You can use component object modeling, runtime polymorphism, Pure virtual functions.
Dlls (Dynamicly linked library)
Thanks,
Prateek |
Forum: C++ Dec 18th, 2007 |
| Replies: 7 Views: 717 Two reasons::
1) Microsoft may change behaviour of these APIs without any notifications. Therefore your application may break.
2) Microsoft does not 'supports' usage of thses APIs. |
Forum: C May 12th, 2006 |
| Replies: 2 Views: 1,114 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)
... |