Home > SparkNotes > Computer Science Study Guides > 2D >

sparknotes

2D Arrays


Problems and Solutions 2

Problem : Consider the two dimensional array:


char* word[] = {
		"TREAT",
		"TREAD",
		"BREAD",
		"BLEAD",
		"BLEND"
}
Write some code that prints the location of the letter that differs from the previous word.


Problem : Write a function that will take a ttt_board_t and will compute if either X or O has won.