Click here to Skip to main content
15,908,455 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Create Trial Version of an appliation Pin
Bob Stanneveld15-Jun-05 23:47
Bob Stanneveld15-Jun-05 23:47 
GeneralRe: Create Trial Version of an appliation Pin
ddmcr16-Jun-05 0:01
ddmcr16-Jun-05 0:01 
GeneralRe: Create Trial Version of an appliation Pin
Bob Stanneveld16-Jun-05 0:12
Bob Stanneveld16-Jun-05 0:12 
GeneralRe: Create Trial Version of an appliation Pin
ddmcr16-Jun-05 0:25
ddmcr16-Jun-05 0:25 
GeneralRe: Create Trial Version of an appliation Pin
John M. Drescher16-Jun-05 4:28
John M. Drescher16-Jun-05 4:28 
GeneralRe: Create Trial Version of an appliation Pin
Blake Miller16-Jun-05 5:15
Blake Miller16-Jun-05 5:15 
GeneralRe: Create Trial Version of an appliation Pin
Bob Stanneveld16-Jun-05 22:00
Bob Stanneveld16-Jun-05 22:00 
Generalhelp in c++ program Pin
kosamoza15-Jun-05 21:11
kosamoza15-Jun-05 21:11 
wrote this code about the Matrix project here is a part of the code to input the matrix or a vector with a dynamic allocation:
double*vector ; int num ; 
cout<<"enter the size of the vector"<<\n;
cin>>num;
vector=new double[num];
for(i=0;i<num;i++)
{
cout<<"enter the element"<<i+1<<"in the vector"<<\n;
cin>>*(vector+i)
}

this for input the vector but for input the matrix i made it in another function:

double*grade ; double**matrix ; int row ; int col; 
cout<<"enter the number of rows then coloumns in the matrix"<<\n;
cin>>row>>col;
double**matrix=new double*[row];
for(int j=0;j<row;j++)
{
matrix[j]=new double[col]
for(int k=0; k<row;k++)
{
for( int l=0; l<col;l++)
{
cout<<"enter the element"<<l+1<<"in the row"<<k+1<<\n;
cin>>*(grade[k]+l)
}}}

iwant to ask if there is any missing in the followin part of the code
so may you answer these previous questions?
& is this pretag right?
GeneralRe: help in c++ program Pin
David Crow16-Jun-05 3:47
David Crow16-Jun-05 3:47 
GeneralRe: help in c++ program Pin
kosamoza16-Jun-05 9:58
kosamoza16-Jun-05 9:58 
GeneralRe: help in c++ program Pin
David Crow16-Jun-05 10:10
David Crow16-Jun-05 10:10 
GeneralRe: help in c++ program Pin
kosamoza16-Jun-05 13:09
kosamoza16-Jun-05 13:09 
GeneralRe: help in c++ program Pin
David Crow16-Jun-05 17:04
David Crow16-Jun-05 17:04 
GeneralRe: help in c++ program Pin
kosamoza16-Jun-05 20:59
kosamoza16-Jun-05 20:59 
GeneralShutdown permittion Pin
Duong Tien Nam15-Jun-05 21:11
Duong Tien Nam15-Jun-05 21:11 
GeneralRe: Shutdown permittion Pin
NormDroid15-Jun-05 21:45
professionalNormDroid15-Jun-05 21:45 
GeneralRe: Shutdown permittion Pin
P-Rex15-Jun-05 21:50
P-Rex15-Jun-05 21:50 
GeneralRe: Shutdown permittion Pin
Duong Tien Nam15-Jun-05 21:51
Duong Tien Nam15-Jun-05 21:51 
GeneralRe: Shutdown permittion Pin
P-Rex15-Jun-05 22:24
P-Rex15-Jun-05 22:24 
GeneralRe: Shutdown permittion Pin
Duong Tien Nam16-Jun-05 23:27
Duong Tien Nam16-Jun-05 23:27 
GeneralRe: Shutdown permittion Pin
NormDroid15-Jun-05 22:34
professionalNormDroid15-Jun-05 22:34 
GeneralRe: Shutdown permittion Pin
Anonymous16-Jun-05 23:21
Anonymous16-Jun-05 23:21 
GeneralRe: Shutdown permittion Pin
Duong Tien Nam16-Jun-05 23:25
Duong Tien Nam16-Jun-05 23:25 
GeneralRe: Shutdown permittion Pin
NormDroid17-Jun-05 0:07
professionalNormDroid17-Jun-05 0:07 
GeneralRe: Shutdown permittion Pin
toxcct16-Jun-05 0:11
toxcct16-Jun-05 0:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.