FCM is a clustering method which needs cluster number (k) like other non-hierarchical clustering algorithms. But before statrting to clustering process you can estimate the cluster number by using different techniques. Here is a study you can trade on about this topic.
Article Intelligent Choice of the Number of Clusters in K-Means Clus...
On the page bellow you'll find 3 methods with examples.
The elbow method, silhouette and gap statistic.
I've tried them all before with different results. In my opinion, the elbow method, although subjective, is very intuitive. You observe Total Within Sum of Squares decay and decide wether a given number os clusters seems reasonable for you.
The same techniques used in other classifier, like k-means, apply here. The number of cluster in an hyper-parameter. So you must use search technique with a validation data to determine the best value.