---
title: "fmod (Opus Funktion)"
---
### Beschreibung

Berechnet den Rest der Division zweier Zahlen.

### Argumente

| Name | Typ | Beschreibung |
| --- | --- | --- |
|  | [float](../../standard-datentypen/float.md) | Zahl Y |
|  | [float](../../standard-datentypen/float.md) | Zahl X |

### Rückgabewert [float](../../standard-datentypen/float.md)

Rest der Division Y/X

### Beispiel

```
Result = fmod(7,4);
```

### Siehe auch

---
