Click here to Skip to main content
15,904,348 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: What is the handle count for a process in windows? Pin
Rajesh R Subramanian11-Jan-07 17:57
professionalRajesh R Subramanian11-Jan-07 17:57 
AnswerRe: What is the handle count for a process in windows? Pin
David Leyva11-Jan-07 10:24
David Leyva11-Jan-07 10:24 
AnswerRe: What is the handle count for a process in windows? Pin
Hamid_RT11-Jan-07 20:58
Hamid_RT11-Jan-07 20:58 
GeneralRe: What is the handle count for a process in windows? Pin
Gupta Suraj11-Jan-07 22:33
Gupta Suraj11-Jan-07 22:33 
QuestionCreating .ico file from HICON Pin
neilsolent11-Jan-07 2:22
neilsolent11-Jan-07 2:22 
AnswerRe: Creating .ico file from HICON Pin
tudorbalan10-Dec-10 1:17
tudorbalan10-Dec-10 1:17 
QuestionWhat's wrong.... [modified] Pin
Astricks11-Jan-07 2:01
Astricks11-Jan-07 2:01 
AnswerRe: What's wrong.... Pin
prasad_som11-Jan-07 2:09
prasad_som11-Jan-07 2:09 
You are accessing declared array with invalid index.
int A[5][5]; should be accessed only from A[0][0] to A[4][4] where as you are accessing it through A[1][1] to A[5][5]
Astricks wrote:
for (i = 1;i<=5;i++) {


You should modify this to,
for (int i = 0 ; i <5 ; i++)
at all places you have done mistake.


GeneralRe: What's wrong.... Pin
Astricks12-Jan-07 0:03
Astricks12-Jan-07 0:03 
AnswerRe: What's wrong.... Pin
CPallini11-Jan-07 2:10
mveCPallini11-Jan-07 2:10 
GeneralRe: What's wrong.... Pin
Astricks12-Jan-07 0:03
Astricks12-Jan-07 0:03 
AnswerRe: What's wrong.... Pin
Eytukan11-Jan-07 2:11
Eytukan11-Jan-07 2:11 
JokeRe: What's wrong.... Pin
CPallini11-Jan-07 2:12
mveCPallini11-Jan-07 2:12 
GeneralRe: What's wrong.... Pin
Eytukan11-Jan-07 2:14
Eytukan11-Jan-07 2:14 
GeneralRe: What's wrong.... Pin
Rajesh R Subramanian11-Jan-07 2:25
professionalRajesh R Subramanian11-Jan-07 2:25 
GeneralRe: What's wrong.... Pin
Eytukan11-Jan-07 2:34
Eytukan11-Jan-07 2:34 
GeneralRe: What's wrong.... Pin
John R. Shaw11-Jan-07 14:54
John R. Shaw11-Jan-07 14:54 
GeneralRe: What's wrong.... Pin
Eytukan11-Jan-07 19:36
Eytukan11-Jan-07 19:36 
GeneralRe: What's wrong.... Pin
Hamid_RT11-Jan-07 20:57
Hamid_RT11-Jan-07 20:57 
GeneralRe: What's wrong.... Pin
Astricks12-Jan-07 0:04
Astricks12-Jan-07 0:04 
AnswerRe: What's wrong.... Pin
neilsolent11-Jan-07 2:12
neilsolent11-Jan-07 2:12 
QuestionSocket Programming Pin
SrikanthVinayak Ram11-Jan-07 1:48
SrikanthVinayak Ram11-Jan-07 1:48 
AnswerRe: Socket Programming Pin
Mark Salsbery11-Jan-07 5:13
Mark Salsbery11-Jan-07 5:13 
AnswerRe: Socket Programming Pin
David Leyva11-Jan-07 10:31
David Leyva11-Jan-07 10:31 
QuestionRe: Socket Programming Pin
SrikanthVinayak Ram11-Jan-07 18:40
SrikanthVinayak Ram11-Jan-07 18:40 

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.