I'm new to C++ and can't figure out why my console won't stay open during execution. I'm just tinkering around, but feel free to crucify bad habits. Please help:
#include <stdio.h>
#include <conio.h>
int main()
{
    printf("quantity\tCost\tTotal\n");
    printf("\a\a\a\a\aSkip a few lines, and beep ");
    printf("%s %c.", "You are kicking butt learning", 'C');
    getche();
    return 0;
}
 
     
    