How do i put a radical sign ( √ ) or its equivalent in a code still encoded in ANSI?
For anyone who doesn't know, a radical sign performs the square root function in math.
This is a discussion on Radical Sign within the C++ Programming forums, part of the General Programming Boards category; How do i put a radical sign ( √ ) or its equivalent in a code still encoded in ANSI? ...
How do i put a radical sign ( √ ) or its equivalent in a code still encoded in ANSI?
For anyone who doesn't know, a radical sign performs the square root function in math.
char radical = 251; //extended ascii
Thanks