should numlives be a variable too since it isntr a constant??

i have this now. this look corect so far. What should i do now?
Code:
#include <stdio.h>

int numlives = 5
int score = 0
int round = 1

int main(void) {

  char name[100] = {0};
printf("Player one, what is your name?\n");
scanf(  HOW DO I SCAN A NAME?  i know it has to go in the name[100])

how does it all loook so far as being setup for what i need to do??