I know this is a stupid questions
how do i send this :
struct Activity {
int i, // Beginning node number.
j; // Ending node number.
float pt, // Pessimistic time.
prt, // Most probable time.
ot; // Optimistic time.
char desc[21]; // Activity description.
} p[51];
into this:
using namespace std;
float* expect_t(float expt[], *p, int n)
{
for( int i = 1; i <= n; ++i ) {
expt[i] = ( p[i].pt + ( 4.0f * p[i].prt ) + p[i].ot ) / 6.0f;
}
return expt;
}
Any help would be appreciated.