In most programming languages, you can mix and match strings with variables during output. However, I can\'t seem to find a good way to do so. Here is my code:
P
In ti-basic for the ti-83 the plus (+) is used to concatenate strings. Like this:
Disp "foo"+" "+"bar"
Will output:
"foo bar"
You must remember to convert numbers to strings using string() though:
string()
Disp "C=√("+string(c)+")"
"C=√(34)"
Disp "C=√("+c+")" (no string()) will throw an error.
Disp "C=√("+c+")"