Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~373 People Reached
Favorite Forums
Favorite Tags
c++ x 6
Member Avatar for chuong3a

How to install OpenGL for CFree 4.1 in Win7. and how to use graphics.h library in Cfree in Win7. Please help me, thanks.

Member Avatar for gridandy
0
186
Member Avatar for chuong3a

Help me to find the error in Prim code, thanks. [CODE] #include <iostream.h> #include <stdio.h> #define MAX 10 class prims { private: int cost[MAX][MAX], tree[MAX][MAX]; int n; public: void readmatrix(); int spanningtree (int src); void display (int cost); }; void prims :: readmatrix() { int i, j, k; n = …

Member Avatar for chuong3a
-1
94
Member Avatar for chuong3a

Help me to use nested LinkedList for expressing Matrix. Thanks. Where is error in my code? [CODE]#include <stdio.h> #include <stdlib.h> #include <time.h> struct Node { int Data; struct Node *Next; }; struct LinkedList { Node *Head; Node *Tail; struct LinkedList *Next1; }; struct LinkedList1 { LinkedList *Head1; LinkedList *Tail1; int …

Member Avatar for Lerner
0
93