how do i go back to "Please enter a number from 0 to 100" after i guessed correctly?

this should be my output:
Please enter a number from 0 to 100:
50
You guessed correctly in 1 try!Congratulat ions!
Play again?
Y //Yes
Please enter a number from 0 to 100:

Code:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main()
...