-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
  • 447,451
  • 88
  • 851
  • 1,056

1 Answers1

2
#include <iostream>
int main() { std::cout << "*   *"; }
R. Martinho Fernandes
  • 219,040
  • 71
  • 423
  • 503