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

C / C++ / MFC

 
GeneralRe: help with a TCP Program that sends messages Pin
Brian Delahunty18-Aug-03 3:18
Brian Delahunty18-Aug-03 3:18 
GeneralNewbie: WebService,DIME, C# into C++ Pin
adaoja18-Aug-03 1:35
adaoja18-Aug-03 1:35 
GeneralScanf() in C graphic library Pin
berk_atabek18-Aug-03 1:20
berk_atabek18-Aug-03 1:20 
GeneralRe: Scanf() in C graphic library Pin
Alexander M.,18-Aug-03 2:00
Alexander M.,18-Aug-03 2:00 
GeneralMFC and std namespace-beginner question Pin
7stud18-Aug-03 0:42
7stud18-Aug-03 0:42 
GeneralRe: MFC and std namespace-beginner question Pin
Alexandru Savescu18-Aug-03 0:49
Alexandru Savescu18-Aug-03 0:49 
GeneralRe: MFC and std namespace-beginner question Pin
7stud18-Aug-03 1:14
7stud18-Aug-03 1:14 
GeneralRe: MFC and std namespace-beginner question Pin
hiseldl18-Aug-03 8:15
hiseldl18-Aug-03 8:15 
Try:

#include <cmath>
using namespace std;
...
// use the sqrt func
float x = sqrt(y);


or you can just call the sqrt function without the "using" keyword:


#include <cmath>
...
// use the sqrt func
float x = std::sqrt(y);


HTH.

David Hisel -- http://www.hisel.com/
GeneralRe: MFC and std namespace-beginner question Pin
7stud18-Aug-03 10:52
7stud18-Aug-03 10:52 
GeneralRe: MFC and std namespace-beginner question Pin
Hosam Aly Mahmoud19-Aug-03 6:02
Hosam Aly Mahmoud19-Aug-03 6:02 
GeneralRe: MFC and std namespace-beginner question Pin
7stud19-Aug-03 18:15
7stud19-Aug-03 18:15 
GeneralRe: MFC and std namespace-beginner question Pin
Hosam Aly Mahmoud19-Aug-03 20:50
Hosam Aly Mahmoud19-Aug-03 20:50 
Generalgetting System time Pin
Emiliano18-Aug-03 0:41
Emiliano18-Aug-03 0:41 
GeneralRe: getting System time Pin
Alexandru Savescu18-Aug-03 0:54
Alexandru Savescu18-Aug-03 0:54 
GeneralRe: getting System time Pin
Alexander M.,18-Aug-03 1:58
Alexander M.,18-Aug-03 1:58 
GeneralRe: getting System time Pin
Anonymous18-Aug-03 4:30
Anonymous18-Aug-03 4:30 
GeneralMonitor registry Pin
JensB18-Aug-03 0:24
JensB18-Aug-03 0:24 
GeneralRe: Monitor registry Pin
Fredrik Skog18-Aug-03 0:35
Fredrik Skog18-Aug-03 0:35 
GeneralRe: Monitor registry Pin
JensB18-Aug-03 1:41
JensB18-Aug-03 1:41 
GeneralRe: Monitor registry Pin
Brian Delahunty18-Aug-03 3:19
Brian Delahunty18-Aug-03 3:19 
GeneralRe: Monitor registry Pin
Rickard Andersson2018-Aug-03 5:00
Rickard Andersson2018-Aug-03 5:00 
GeneralRe: Monitor registry Pin
Fredrik Skog18-Aug-03 20:08
Fredrik Skog18-Aug-03 20:08 
Questionhow to develop a windows installer for my application? Pin
Habbit17-Aug-03 23:47
Habbit17-Aug-03 23:47 
AnswerRe: how to develop a windows installer for my application? Pin
Ted Ferenc18-Aug-03 0:14
Ted Ferenc18-Aug-03 0:14 
AnswerRe: how to develop a windows installer for my application? Pin
Fredrik Skog18-Aug-03 0:35
Fredrik Skog18-Aug-03 0:35 

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.