C++ Star write - Printf example

Star write - Printf example

#include <conio.h>
#include <stdio.h>

void main()
{
 while(!kbhit()) printf("*");
}