#include int main() { float pi = 3.141596; char halfpie[80]; pi/=2; sprintf(halfpie, "%f", pi); printf("Here is the result: %s\n", halfpie); return 0; }