Click here to Skip to main content
15,921,941 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Controlling Access To Temporary File Pin
Neville Franks4-Jun-03 2:58
Neville Franks4-Jun-03 2:58 
GeneralPointer to structure problem... Pin
IrishSonic3-Jun-03 23:09
IrishSonic3-Jun-03 23:09 
GeneralRe: Pointer to structure problem... Pin
jhwurmbach3-Jun-03 23:30
jhwurmbach3-Jun-03 23:30 
GeneralRe: Pointer to structure problem... Pin
Dominik Reichl3-Jun-03 23:35
Dominik Reichl3-Jun-03 23:35 
GeneralRe: Pointer to structure problem... Pin
jhwurmbach3-Jun-03 23:41
jhwurmbach3-Jun-03 23:41 
GeneralRe: Pointer to structure problem... Pin
RChin3-Jun-03 23:32
RChin3-Jun-03 23:32 
GeneralRe: Pointer to structure problem... Pin
BhaskarBora4-Jun-03 1:29
BhaskarBora4-Jun-03 1:29 
GeneralRe: Pointer to structure problem... Pin
Dominik Reichl3-Jun-03 23:32
Dominik Reichl3-Jun-03 23:32 
1) The source buffer for memcpy is too small. It is just 5 characters ("Paul"+zero), but you specify 30. This will result in a memory access error. A valid value for memcpy source len would be strlen("Paul")+1.

2) Declare the Test array as array and not as pointer array. So instead of struct s_Test* Test[10]; do a struct s_Test Test[10];

3) If you have done step 2 you don't need a dereferenced access to the name member variable any more. So the memcpy would look like:
memcpy(Test[0].name,"Paul",strlen("Paul")+1);

Big Grin | :-D
-Dominik



_outp(0x64, 0xAD);
and
__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? Wink | ;)

GeneralRe: Pointer to structure problem... Pin
IrishSonic4-Jun-03 0:07
IrishSonic4-Jun-03 0:07 
GeneralRe: Pointer to structure problem... Pin
Dominik Reichl4-Jun-03 0:48
Dominik Reichl4-Jun-03 0:48 
GeneralRe: Pointer to structure problem... Pin
Rage4-Jun-03 0:55
professionalRage4-Jun-03 0:55 
GeneralThanks guys, have it sorted now. Pin
IrishSonic4-Jun-03 2:48
IrishSonic4-Jun-03 2:48 
GeneralRe: Pointer to structure problem... Pin
John M. Drescher4-Jun-03 4:37
John M. Drescher4-Jun-03 4:37 
QuestionDoes the static variable modifier make variable access faster? Pin
Dominik Reichl3-Jun-03 22:48
Dominik Reichl3-Jun-03 22:48 
AnswerRe: Does the static variable modifier make variable access faster? Pin
FlyingDancer3-Jun-03 23:19
FlyingDancer3-Jun-03 23:19 
GeneralRe: Does the static variable modifier make variable access faster? Pin
Dominik Reichl3-Jun-03 23:28
Dominik Reichl3-Jun-03 23:28 
AnswerRe: Does the static variable modifier make variable access faster? Pin
Andrew Walker4-Jun-03 1:03
Andrew Walker4-Jun-03 1:03 
GeneralRe: Does the static variable modifier make variable access faster? Pin
BhaskarBora4-Jun-03 1:48
BhaskarBora4-Jun-03 1:48 
GeneralRe: Does the static variable modifier make variable access faster? Pin
Andrew Walker4-Jun-03 1:53
Andrew Walker4-Jun-03 1:53 
GeneralRe: Does the static variable modifier make variable access faster? Pin
BhaskarBora4-Jun-03 21:12
BhaskarBora4-Jun-03 21:12 
AnswerRe: Does the static variable modifier make variable access faster? Pin
BhaskarBora4-Jun-03 1:42
BhaskarBora4-Jun-03 1:42 
GeneralRe: Does the static variable modifier make variable access faster? Pin
Dominik Reichl4-Jun-03 4:42
Dominik Reichl4-Jun-03 4:42 
Questionhow to make Floppy-Disk-Device's LED blinking Pin
FlyingDancer3-Jun-03 22:25
FlyingDancer3-Jun-03 22:25 
AnswerRe: how to make Floppy-Disk-Device's LED blinking Pin
Toni784-Jun-03 19:51
Toni784-Jun-03 19:51 
GeneralRe: how to make Floppy-Disk-Device's LED blinking Pin
FlyingDancer4-Jun-03 20:13
FlyingDancer4-Jun-03 20:13 

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.