/****************************************************************************
 * buggy2.c
 *
 * Computer Science 50
 * David J. Malan
 *
 * Should print 10 asterisks, one per line, but doesn't!
 * Can you find the bug?
 ***************************************************************************/
 
#include <stdio.h>
 
int
main(int argc, char *argv[])
{
    int i;
 
    for (i = 0; i <= 10; i++)
        printf("*");
        printf("\n");
}