To add a third table to the UNION statement, assuming the third table to also have the same exact structure, add
UNION SELECT * FROM C ;
But remember, UNION only works when the elements named or implied from ALL participating SELECT clauses result in exactly the same list of fields of exactly the same data types presented in exactly the same order of fields.
There are ways to overcome that limitation, but not with the syntax you are using. "SELECT *" is pretty much a statement that you are asserting that you KNOW you have full field-level compatibility. If you are wrong, this syntax will fail you somewhere along the line.