#include <stdio.h>
#include <string.h>
#define N 100
void len_cat(char c1[],char c2[])
{
int i,j;
for(i=0;c1[i]!='\0';i++);
for(j=0;c2[j]!='\0';j++)
c1[i+j]=c2[j]
#include <stdio.h>
#include <string.h>
#define N 100
void len_cat(char c1[],char c2[])
{
int i,j;
for(i=0;c1[i]!='\0';i++);
for(j=0;c2[j]!='\0';j++)
c1[i+j]=c2[j]