E2188 Expression Syntax error [borland c++]

Status
Not open for further replies.
Level 5
Joined
May 31, 2009
Messages
102
I'm getting an error at the red line saying E2188 Expression Syntax. Any ideas how to fix it ?
I am trying to use the function for square root calculation

{long int rootsie, n, m;
m = StrToInt(Edit1->Text);
n = StrToInt(Edit2->Text);
rootsie= double sqrt(double m);
}
 
Status
Not open for further replies.
Back
Top