Hi,
Maybe someone can help me out a bit here.
I need to create a structure and program that asks the user to enters a line of text .
It the prompts them 1 for yes 0 for no, if they would like it to be displayed as bold then ask if they want it displayed as italics, and then underlined. I need to Keep track of the user's responses for a single line of text within a single structure. And use an array of structures to hold all the information for all lines of text entered.

Not sure what my structure should look like here?


struct rec
{
int txt[100][100]; /* Text variable */
int bold[100][100]; /* Bold variable */
int uline[100][100]; /* Underline Variable */
int italics[100][100]; /* Italics Variable */
};
?

pretty much need some where to start.

Thanks!