#include <stdio.h>
#define MAX_LINE_SIZE 80

/*
 * Program to 
 * Terry Harvey CISC 105 section 98 TA James Jamerson
 */

int main(){

    char word[10];
    int i = 6;
    char c;
    char data[MAX_LINE_SIZE];

    printf("Please enter a char: ");
    scanf("%c", &c);
    fgets(data, MAX_LINE_SIZE, stdin);

    while(c != 'q'){

	printf("%s\n", "spam");

	printf("Please enter a char: ");
	scanf("%c", &c);
	fgets(data, MAX_LINE_SIZE, stdin);

    }
    return 0;

}
