AnswerBox
C

String Concatenation

Description:
Concatenate two strings using strcat.
C Code
#include <stdio.h>
#include <string.h>
int main() {
    char first[50] = "Answer";
    char second[] = "Box";
    strcat(first, second);
    printf("Result: %s\n", first);
    return 0;
}
Expected Output
Result: AnswerBox