Unholy
Switzerland
 
 
:steamhappy::steamhappy:
Rarest Achievement Showcase
yakyy 12 May, 2024 @ 5:38am 
𓀿𓀐 𓀿𓀐 𓀿𓀐
Bebop or throw 12 May, 2024 @ 5:38am 
░░░░░░░██████╗░███████╗██████╗░
░░██╗░░██╔══██╗██╔════╝██╔══██╗░
██████╗██████╔╝█████╗░░██████╔╝░
╚═██╔═╝██╔══██╗██╔══╝░░██╔═══╝░
░░╚═╝░░██║░░██║███████╗██║░░░░
░░░░░░░╚═╝░░╚═╝╚══════╝╚═╝░
comment for comment
Bebop or throw 12 May, 2024 @ 5:38am 
⣿⣿⣿⣿⣿⣿⣿⠋⣉⡙⠛⣉⣉⠻⣿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣿⠸⣿⣿⣾⣿⡿⠀⣿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣿⣦⡘⠻⣿⠟⣡⣾⣿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⠿⢿⣿⣶⣤⣼⠟⠻⢿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⢡⣶⣦⡌⠻⡿⢁⣾⣷⠀⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⡄⢻⣿⣿⣦⡀⢸⣿⡏⣸⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣦⠙⢿⣿⣿⣆⠙⢠⣿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣿⣷⡌⠻⣿⣿⣷⣄⠻⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣿⢡⣴⣤⡘⢿⣿⣿⣧⡈⢿⣿⣿⣿
⣿⣿⣿⣿⡟⢋⣁⠘⢿⣿⣿⣆⠙⣿⣿⣷⡀⢻⣿⣿
⣿⣿⣿⠿⠀⣿⣿⣷⣄⠻⣿⣿⣿⣿⣿⣿⣷⠈⣿⣿
⣿⡟⢠⣶⣤⡈⠻⣿⣿⣷⣿⣿⣿⣿⣿⣿⠏⣰⣿⣿
⣿⣿⡈⢿⣿⣿⣶⣼⣿⣿⣿⣿⣿⣿⣿⠋⣰⣿⣿⣿
⣿⣿⣷⣄⠙⢿⣿⣿⣿⣿⣿⣿⡿⠟⣡⣾⣿⣿⣿⣿
⣿⣿⣿⣿⣷⣦⣉⠛⠛⠛⢛⣉⣴⣾⣿⣿⣿⣿⣿⣿
yakyy 12 May, 2024 @ 5:37am 
d
Bebop or throw 12 May, 2024 @ 5:30am 
BUY 500 MMR, GET 100 MMR FREE► BUY 1000 MMR, GET 200 MMR FREE ► DISCOUNT:venge_powerup: : :rainbow_phoenix: facebook.com/niko.874 :rainbow_phoenix:
Bebop or throw 12 May, 2024 @ 5:28am 
#include <stdio.h>
#include <string.h>
void stringConcat(char *dest, const char *src) {
while (*dest != '\0') {
dest++;
}
while (*src != '\0') {
*dest = *src;
dest++;
src++;
}
*dest = '\0';
}
int main() {
char dest[100];
char src[50];
printf("Enter 1st string: ");
fgets(dest, sizeof(dest), stdin);
dest[strcspn(dest, "\n")] = '\0';
printf("Enter 2nd string: ");
fgets(src, sizeof(src), stdin);
src[strcspn(src, "\n")] = '\0';
printf("String 1: %s\n", dest);
printf("String 2: %s\n", src);
stringConcat(dest, src);
printf("Concatenated string: %s\n", dest);
return 0;
}