I'm writing a program that takes in numbers from a file, places them into an array then sorts the array. My question is how to make the program cout the numbers alone without the commas.
#include <iostream>
#include <fstream>
using namespace std;
const int SIZE = 99;
void sort(char array[], int n);
int main()
{
char file[25];
char * array = new char[SIZE];
int number = 0;
double x[SIZE];