The syntax for an inner join of more than two tables is the same as for two tables. You simply chain multiple inner join clauses together in the FROM clause.
For example:
SELECT A~a, B~c, C~y
FROM A
INNER JOIN B ON A~b = B~b
INNER JOIN C ON B~x = C~x
This performs an inner join of tables A, B and C.