#include <stdio.h>
#include <stdlib.h>
#include<string.h>
void main()
{
char name[30],mname[40];
printf("enter the num:");
gets(name);
strcat(name,123);
printf("%s",name);
}
is it possible to concatenate num and character its not working how to concatenate numbers and character