-6

In a c++ program how to get an output like the following one:

*   *

Basically, for example how to get three spaces between these two asterisks as an output?

Kerrek SB
  • 464,522
  • 92
  • 875
  • 1,084

1 Answers1

2
#include <iostream>
int main() { std::cout << "*   *"; }
R. Martinho Fernandes
  • 228,013
  • 71
  • 433
  • 510