Click here to Skip to main content
15,910,471 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Getting value of a input attribute 'id' of a resource in a webpage Pin
Pk.j24-Jun-10 1:52
Pk.j24-Jun-10 1:52 
GeneralRe: Getting value of a input attribute 'id' of a resource in a webpage Pin
Niklas L24-Jun-10 1:57
Niklas L24-Jun-10 1:57 
QuestionRe: Getting value of a input attribute 'id' of a resource in a webpage Pin
David Crow24-Jun-10 3:03
David Crow24-Jun-10 3:03 
GeneralRe: Getting value of a input attribute 'id' of a resource in a webpage [modified] Pin
Pk.j24-Jun-10 20:12
Pk.j24-Jun-10 20:12 
QuestionElliminate the e symbol from doubles Pin
Schehaider_Aymen23-Jun-10 23:43
Schehaider_Aymen23-Jun-10 23:43 
AnswerRe: Elliminate the e symbol from doubles Pin
CPallini23-Jun-10 23:46
mveCPallini23-Jun-10 23:46 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:03
Schehaider_Aymen24-Jun-10 0:03 
GeneralRe: Elliminate the e symbol from doubles Pin
CPallini24-Jun-10 0:07
mveCPallini24-Jun-10 0:07 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:14
Schehaider_Aymen24-Jun-10 0:14 
GeneralRe: Elliminate the e symbol from doubles Pin
CPallini24-Jun-10 0:25
mveCPallini24-Jun-10 0:25 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:27
Schehaider_Aymen24-Jun-10 0:27 
GeneralRe: Elliminate the e symbol from doubles Pin
CPallini24-Jun-10 0:53
mveCPallini24-Jun-10 0:53 
AnswerRe: Elliminate the e symbol from doubles Pin
Niklas L24-Jun-10 0:02
Niklas L24-Jun-10 0:02 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:06
Schehaider_Aymen24-Jun-10 0:06 
GeneralRe: Elliminate the e symbol from doubles Pin
Niklas L24-Jun-10 0:15
Niklas L24-Jun-10 0:15 
GeneralRe: Elliminate the e symbol from doubles Pin
Niklas L24-Jun-10 0:17
Niklas L24-Jun-10 0:17 
AnswerRe: Elliminate the e symbol from doubles Pin
Aescleal24-Jun-10 0:22
Aescleal24-Jun-10 0:22 
You'll never get a representation of that integer into a double without loosing a chunk of accuracy. 105145010021234567890311169400 is 0xE97804B9A34AB4E which is going to take about 60 bits to hold. As a double only has 53 bits to store digits you've already rounded your number to the nearest multiple of 128 by storing it in a double.

So as it's an integer, store it in an integer - the e bit is non-negotiable with a floating point number and has no bearing at all on your problem.

Ash
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:25
Schehaider_Aymen24-Jun-10 0:25 
AnswerRe: Elliminate the e symbol from doubles Pin
norish24-Jun-10 1:07
norish24-Jun-10 1:07 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 2:11
Schehaider_Aymen24-Jun-10 2:11 
GeneralRe: Elliminate the e symbol from doubles Pin
Richard MacCutchan24-Jun-10 2:53
mveRichard MacCutchan24-Jun-10 2:53 
QuestionHow to do Modulo (double and Big Numbers) Pin
Schehaider_Aymen23-Jun-10 21:50
Schehaider_Aymen23-Jun-10 21:50 
AnswerRe: How to do Modulo (double and Big Numbers) Pin
Richard MacCutchan23-Jun-10 21:59
mveRichard MacCutchan23-Jun-10 21:59 
GeneralRe: How to do Modulo (double and Big Numbers) Pin
Schehaider_Aymen23-Jun-10 22:07
Schehaider_Aymen23-Jun-10 22:07 
AnswerRe: How to do Modulo (double and Big Numbers) Pin
CPallini23-Jun-10 22:01
mveCPallini23-Jun-10 22:01 

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.