In short, it depends on the owning side of the relationship.
To simplify it, let's assume a dummy rule: The owning side is always the one with the foreign key (for the whole story I would recommend a good book such as Pro JPA 2: Mastering the Java™ Persistence API). Since you have a @ManyToOne relationship from Car to User, by our dummy rule, Car is the owning side:
*---------------* *--------------*
| CAR | | USER |
*---------------* *--------------*
| CARD_ID (PK) | ~-> | USER_ID (PK) |
| USER_ID (FK) | --~ *--------------*
*---------------*
When you are removing the owning side, nothing else must be done.
In your case, since car is the owning side you can simply remove the car, i.e, dao.remove(car); will suffice.
Now let's think about the opposite situation. Let's say that you needed to remove a User, i.e., the referenced side.
If you remove a user that have a car associated with it (assuming no cascading behavior is in place), the database DELETE operation would fail because of a FK Violation.
The rule of tumb is: Relationship maintenance is responsibility of the application. Which means adjusting the reference on the opposite (owning) side of the relationship.
If the foreign key column in the car table can be NULL you could use car.setUser(null); before removing the user. This would leave an orphan car in your database.
If the foreign key column is NOT NULL, before removing the user you need either to associate the car with another user:
car.setUser(anotherUser);
Or remove the car from the database all together:
dao.remove(car);
As I said, there is much more to relationship maintenance than that. JPA have features such as @CascadeTypes; bidirectional @ManyToMany relationships where the owning side can be chosen arbitrarily; unidirectional @OneToMany(with a join table) etc. But I think this pretty much sums up the basics.