Click here to Skip to main content
15,898,745 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Does DestroyWindow Parent CDialog destroy all ChildControls Pin
ForNow28-Apr-16 2:16
ForNow28-Apr-16 2:16 
AnswerRe: Does DestroyWindow Parent CDialog destroy all ChildControls Pin
Parthiban.Appuswamy28-Apr-16 3:39
Parthiban.Appuswamy28-Apr-16 3:39 
GeneralRe: Does DestroyWindow Parent CDialog destroy all ChildControls Pin
leon de boer28-Apr-16 4:51
leon de boer28-Apr-16 4:51 
QuestionHow To Look At GCC C Sources Pin
Frederick J. Harris24-Apr-16 2:22
Frederick J. Harris24-Apr-16 2:22 
AnswerRe: How To Look At GCC C Sources Pin
Richard MacCutchan24-Apr-16 3:02
mveRichard MacCutchan24-Apr-16 3:02 
GeneralRe: How To Look At GCC C Sources Pin
Frederick J. Harris24-Apr-16 4:57
Frederick J. Harris24-Apr-16 4:57 
GeneralRe: How To Look At GCC C Sources Pin
Richard MacCutchan24-Apr-16 5:44
mveRichard MacCutchan24-Apr-16 5:44 
AnswerRe: How To Look At GCC C Sources Pin
Jochen Arndt24-Apr-16 21:32
professionalJochen Arndt24-Apr-16 21:32 
What you are looking for are the glibc sources (the C standard library) and not the GCC sources (the GNU compiler collection). Glibc download: The GNU C Library[^]; download without using Git: Index of /gnu/glibc[^].

The pow() and exp() functions are part of the math library which depends on the target platform processor. Once you have unpacked the glibc sources, these functions can be found here for x86 CPUs (file names for double):

  • sysdeps/i386/fpu/e_pow.S: Implementation using the x87 math coprocessor.
  • sysdeps/ieee754/dbl-64/e_pow.c: Implementation in plain C.

The FPU implementation is in assembler and should not need any other functions. The IEEE implementation needs other modules (at least e_exp.c) and some header files.
GeneralRe: How To Look At GCC C Sources Pin
Frederick J. Harris24-Apr-16 23:57
Frederick J. Harris24-Apr-16 23:57 
QuestionExchanging data using CSocket Pin
manoharbalu22-Apr-16 22:30
manoharbalu22-Apr-16 22:30 
AnswerRe: Exchanging data using CSocket Pin
Jochen Arndt22-Apr-16 23:30
professionalJochen Arndt22-Apr-16 23:30 
GeneralRe: Exchanging data using CSocket Pin
manoharbalu24-Apr-16 20:23
manoharbalu24-Apr-16 20:23 
GeneralRe: Exchanging data using CSocket Pin
Jochen Arndt24-Apr-16 20:53
professionalJochen Arndt24-Apr-16 20:53 
QuestionAdding UI to an existing console project using windows form Pin
Member 935023722-Apr-16 6:05
Member 935023722-Apr-16 6:05 
AnswerRe: Adding UI to an existing console project using windows form Pin
Richard MacCutchan22-Apr-16 6:47
mveRichard MacCutchan22-Apr-16 6:47 
GeneralRe: Adding UI to an existing console project using windows form Pin
Member 935023725-Apr-16 21:51
Member 935023725-Apr-16 21:51 
AnswerRe: Adding UI to an existing console project using windows form Pin
leon de boer24-Apr-16 15:49
leon de boer24-Apr-16 15:49 
GeneralRe: Adding UI to an existing console project using windows form Pin
Member 935023725-Apr-16 21:55
Member 935023725-Apr-16 21:55 
QuestionCode Blocks giving fatal error of not finding header file when there are seperate class files Pin
Mur250122-Apr-16 3:07
Mur250122-Apr-16 3:07 
SuggestionRe: Code Blocks giving fatal error of not finding header file when there are seperate class files Pin
Richard MacCutchan22-Apr-16 4:15
mveRichard MacCutchan22-Apr-16 4:15 
QuestionRe: Code Blocks giving fatal error of not finding header file when there are seperate class files Pin
David Crow22-Apr-16 17:58
David Crow22-Apr-16 17:58 
QuestionCan DDX_Text be used with CTEXT resource item Pin
ForNow21-Apr-16 16:58
ForNow21-Apr-16 16:58 
QuestionRe: Can DDX_Text be used with CTEXT resource item Pin
Richard MacCutchan21-Apr-16 20:48
mveRichard MacCutchan21-Apr-16 20:48 
AnswerRe: Can DDX_Text be used with CTEXT resource item Pin
ForNow22-Apr-16 3:26
ForNow22-Apr-16 3:26 
AnswerRe: Can DDX_Text be used with CTEXT resource item Pin
Victor Nijegorodov22-Apr-16 0:39
Victor Nijegorodov22-Apr-16 0:39 

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.