My issue
what will be the solution of these question
My code
#include <stdio.h>
int main () {
char num1[] = "25";
int num2 = 69;
strcat(strcat(num1," "),num2);
printf("%s", num1);
return 0;
}
Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone