The program takes an arbitrary amount of integers as an input and gives an output of that integer and that amount of stars.
E.g.
In: 1 2 3
Out:
1 | *
2 | **
3 | ***
Another example:
In: 2 5 6 8
Out:
2 | **
5 | *****
6 | ******
8 | ********
How do I do it??
Btw, amateur C programmer
And how do I add a single line space "\n" between lines in Stack Overflow question format
tag at the end of Line for "\n" – Harshavardhan Konakanchi Aug 07 '12 at 05:26