Mar 2, 2005 #1 dbadmin Programmer Jan 3, 2003 147 US Hi, I have a database table data which says "^n". Is it possible to convert it to raised to n (superscript) using VC++? dbadmin
Hi, I have a database table data which says "^n". Is it possible to convert it to raised to n (superscript) using VC++? dbadmin
Mar 3, 2005 #2 stupidog Technical User Jun 26, 2001 27 US Parse the string, catch the ^ character - when you see this, you call the pow() function. You catch the n character and use it as the index in pow(). Upvote 0 Downvote
Parse the string, catch the ^ character - when you see this, you call the pow() function. You catch the n character and use it as the index in pow().