С++
Подправьте пожалуйста код, чтобы strcpy_s работало

void CategoryTovar(char* category) {
char cat[][12]{
"Пряжа",
"Фурнiтура",
"Iнструменти",
};
int x;
do {
cout << "Оберіть категорiю (1 - Пряжа, 2 - Фурнiтура, 3 - Iнструменти): ";
cin >> x;
if (cin) {
if (x == 1 x == 2 x == 3) {
strcpy_s(category, cat[x - 1]);
cin.ignore();
break;
}
else {
cout << "Введіть число вiд 1 до 3!" << endl;
}
}
else {
cout << "Введiть число, а не інші символи!" << endl;
cin.clear();
cin.ignore(1000, '\n');
}
} while (true);
}​
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.