I am trying to use the backspace control character ''
to erase trailing commas at the end of line. Although it works in cases where there is no other output to stdout
, in case if there is another output after ''
, it becomes useless. Here is an example:
#include <iostream>
using namespace std;
int main()
{
int a[] = { 1, 3, 4, 5, 6, 32, 321, 9};
for ( int i = 0; i < 8; i++) {
cout << a[i] << "," ;
}
cout << "" ;
//cout << endl;
return 0;
}
In the above block of code, if the line is commented as seen, we get the desired result with no comma after the digit 9. However, if the line uncommented, the comma re-appears.
In my program, I do not want the comma to be there, but want an endline after 9. How do I do this ?
See Question&Answers more detail:os