Click here to Skip to main content
15,887,875 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionC or C++ for customized embedded Linux, which is the best and why? Pin
Abdullah A. Mohamed22-Jul-15 19:28
Abdullah A. Mohamed22-Jul-15 19:28 
AnswerRe: C or C++ for customized embedded Linux, which is the best and why? Pin
Jeremy Falcon27-Jul-15 5:11
professionalJeremy Falcon27-Jul-15 5:11 
QuestionReading uncompressed AVI file frame by frame into raw memory buffer? Pin
Kiran Satish22-Jul-15 19:08
Kiran Satish22-Jul-15 19:08 
AnswerRe: Reading uncompressed AVI file frame by frame into raw memory buffer? Pin
Daniel Pfeffer22-Jul-15 21:38
professionalDaniel Pfeffer22-Jul-15 21:38 
GeneralRe: Reading uncompressed AVI file frame by frame into raw memory buffer? Pin
Kiran Satish23-Jul-15 6:12
Kiran Satish23-Jul-15 6:12 
GeneralRe: Reading uncompressed AVI file frame by frame into raw memory buffer? Pin
Daniel Pfeffer23-Jul-15 6:41
professionalDaniel Pfeffer23-Jul-15 6:41 
GeneralRe: Reading uncompressed AVI file frame by frame into raw memory buffer? Pin
Kiran Satish23-Jul-15 14:42
Kiran Satish23-Jul-15 14:42 
AnswerAssigning data to int array using pointers Pin
Vaclav_22-Jul-15 14:13
Vaclav_22-Jul-15 14:13 
I am trying to rebuild small data base to improve on my terrible knowledge of pointers.
The array is pretty simple integers representing ASCII code , I do the conversion by casting the int or char to LCD print function for display. Works fine with one problem - one of the int in the array is a REAL number ( 0 thru 9) , not just ASCII representation of a number.
For illustration - the ints are 32 65 73 7 73

The "problem " the index #3 does not read just 7 , but 773.
And the array sizeof is also 3 , and it should be 4.

Majority of the code is just for debug.

I can change the real numbers to ASCII representation but would like to know why is this behaving this way.
Appreciate your help.
Vaclav

<pre><pre
int *pCarrier[sizeof(iRecordIndex)];
for (i = 0; i != sizeof(iRecordIndex); i++)
{
pCarrier[i] = &iRecord[i]; // assign data to pointer
lcd_i2c.setCursor(0, 0);
lcd_i2c.print("Index " );
lcd_i2c.print(i);
lcd_i2c.setCursor(0, 1);
lcd_i2c.print((char) iRecord[i] );
lcd_i2c.setCursor(0, 2);
lcd_i2c.print(iRecord[i] );
lcd_i2c.print(" ");

lcd_i2c.print(*pCarrier[i] );
delay(DELAY);
}


lcd_i2c.clear();
lcd_i2c.print("Database " );
lcd_i2c.setCursor(0, 1);
for (i = 0; i != sizeof(iRecordIndex)+ 1 ; i++)
{
lcd_i2c.print((int)*pCarrier[i] );
delay(DELAY);
}

pre></pre>
GeneralRe: Assigning data to int array using pointers Pin
Richard Andrew x6422-Jul-15 15:30
professionalRichard Andrew x6422-Jul-15 15:30 
GeneralRe: Assigning data to int array using pointers Pin
Vaclav_23-Jul-15 3:45
Vaclav_23-Jul-15 3:45 
GeneralRe: Assigning data to int array using pointers Pin
Richard MacCutchan22-Jul-15 21:33
mveRichard MacCutchan22-Jul-15 21:33 
GeneralRe: Assigning data to int array using pointers Pin
Vaclav_23-Jul-15 4:38
Vaclav_23-Jul-15 4:38 
GeneralRe: Assigning data to int array using pointers Pin
Richard Andrew x6423-Jul-15 5:17
professionalRichard Andrew x6423-Jul-15 5:17 
GeneralRe: Assigning data to int array using pointers Pin
Vaclav_23-Jul-15 6:37
Vaclav_23-Jul-15 6:37 
GeneralRe: Assigning data to int array using pointers Pin
Arthur V. Ratz13-Aug-15 19:41
professionalArthur V. Ratz13-Aug-15 19:41 
Questionhow to use d following sha1 zip file Pin
Member 1185569722-Jul-15 7:07
Member 1185569722-Jul-15 7:07 
AnswerRe: how to use d following sha1 zip file Pin
jeron122-Jul-15 7:58
jeron122-Jul-15 7:58 
Question[SOLVED] VC++ 2013 Ultimate IDE is very slow Pin
AmbiguousName22-Jul-15 1:12
AmbiguousName22-Jul-15 1:12 
AnswerRe: VC++ 2013 Ultimate IDE is very slow Pin
CPallini22-Jul-15 1:40
mveCPallini22-Jul-15 1:40 
AnswerRe: VC++ 2013 Ultimate IDE is very slow Pin
Richard MacCutchan22-Jul-15 2:01
mveRichard MacCutchan22-Jul-15 2:01 
GeneralRe: VC++ 2013 Ultimate IDE is very slow Pin
AmbiguousName22-Jul-15 2:52
AmbiguousName22-Jul-15 2:52 
GeneralRe: VC++ 2013 Ultimate IDE is very slow Pin
Wes Aday22-Jul-15 3:01
professionalWes Aday22-Jul-15 3:01 
QuestionPsola python implementation Pin
BatPi20-Jul-15 20:46
professionalBatPi20-Jul-15 20:46 
AnswerRe: Psola python implementation Pin
David Crow21-Jul-15 1:57
David Crow21-Jul-15 1:57 
QuestionRe: Psola python implementation Pin
CPallini21-Jul-15 1:59
mveCPallini21-Jul-15 1:59 

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.