This is a program that takes input from user for his name and selection out of rock, paper and scissors. It has a function generateRandomNumber(int n)
that generates 0, 1 or 2. based on the number the computer is assigned its selection and both their selections are compared to see who won the round. This repeats for 3 times and the one with the highest point wins. But there seems to be a segmentation error when trying to print computer's selection before comparison of the selections.
I do not understand the reason behind this error. Please help me fix the code.
source code:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
int generateRandomNumber(int n)
{
srand(time(NULL));
return rand() % n;
}
int main()
{
int num;
char PlayerName[50];
char Pselection[8], Cselection[8];
printf("Enter Name of Player:\n");
fgets(PlayerName, sizeof(PlayerName), stdin);
PlayerName[strcspn(PlayerName, "\n")] = '\0'; // Remove the newline character
printf("Player 1: %s \nPlayer 2: Computer\n", PlayerName);
int Cpoints = 0, Ppoints = 0;
for (int i = 0; i < 3; i++)
{
printf("The Game of Rock, Paper, and Scissors begins:\n Enter your selection:\n");
scanf("%s", Pselection);
num = generateRandomNumber(3);
if (num == 0)
strcpy(Cselection, "rock");
else if (num == 1)
strcpy(Cselection, "paper");
else if (num == 2)
strcpy(Cselection, "scissors");
printf("Compueter: %s\n", *Cselection);
if (strcmp(Cselection, Pselection) == 0)
{
continue;
}
else if (strcmp(Cselection, "rock") == 0 && strcmp(Pselection, "paper") == 0)
Ppoints++;
else if (strcmp(Cselection, "paper") == 0 && strcmp(Pselection, "rock") == 0)
Cpoints++;
else if (strcmp(Cselection, "scissors") == 0 && strcmp(Pselection, "paper") == 0)
Ppoints++;
else if (strcmp(Cselection, "paper") == 0 && strcmp(Pselection, "scissors") == 0)
Cpoints++;
else if (strcmp(Cselection, "scissors") == 0 && strcmp(Pselection, "rock") == 0)
Ppoints++;
else if (strcmp(Cselection, "rock") == 0 && strcmp(Pselection, "scissors") == 0)
Cpoints++;
else
printf("\t*******\tSelection Error! Please check your selection and try again.\t*******\t\n");
printf("score: %d-%d", Ppoints, Cpoints);
}
if (Ppoints >= Cpoints)
printf("The score is %d-%d \nCongratulations! %s is the winner!\n", Ppoints, Cpoints, PlayerName);
else
printf("The score is: %d-%d \nBetter Luck Next Time! The computer won.\n", Ppoints, Cpoints);
return 0;
}
Error Message:
‘__builtin_memcpy’ writing 9 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
I tried to print a few variations of printing the Cselection but the output stops after entering Pselection.
You had 2 mistakes.
1st Mistake:
You shouldn't have used '*'.
2nd Mistake:
You have as an input choice the word "scissors". To be able to store it to an array, you need 9 slots. You must consider the '\0' character as a part of it.
A code that will work: