The correct equation is C. k-25=55.
Let's break down the problem. We know that Ryan hands out 55 watermelon slices in total, and that he gives 25 of those slices to adults. That means he must have given 55 - 25 = 30 slices to kids.
We also know that each kid gets one slice, so we can set up the following equation:
```
k = the number of kids
k * 1 = the number of slices given to kids
k * 1 = 30
```
Simplifying the right side of the equation, we get:
```
k * 1 = 30
k = 30
```
Therefore, the equation C. k-25=55 is the correct one to use to find the number of kids at the reunion. The answer is k = 30.
Here is the Python code to solve this problem:
```
kids = 55 - 25
print(kids)
```
This code will print the number of kids at the reunion, which is 30.