Skip to content

Instantly share code, notes, and snippets.

View yogggoy's full-sized avatar
🚀

Erdni M yogggoy

🚀
View GitHub Profile
@yogggoy
yogggoy / stepik_samples.cpp
Last active April 22, 2021 18:16
примеры для решения задач stepik
void strcat(char *to, const char *from)
{
while (*to){
to++;
}
while (*from){
*to = *from;
from++;
to++;