I wrote a program in which I converted a float to a string then inserted commas in them. Now I have been instructed to make changes to my program. I am now to display figures with thousand separator commas in them numerically without converting them to strings first. The only clues my higher level co-worker gave me was to break the float figure into two integer numbers (The number that comes before the decimal point and the number that comes after the decimal point) He also said to use a formatting template so that I could display numerical output with commas in the figures. I still have no clue on how to display numbers with commas in them. I have researched in many books and I cannot find a way to display output with thousand separator commas in the numbers. Please tell me how I can display output without using strings or arrays so the numbers contain commas. Thank you very much!