How to remove the % in zsh that show after running c++ file

# Open your .zshrc file in a text editor
nano ~/.zshrc

# Find the line that sets the RPROMPT variable
# It might look like this:
# RPROMPT='%'

# Modify the line to remove the '%' character
RPROMPT=''

# Save and exit the text editor

# Apply the changes to your current session
source ~/.zshrc