Friday, 25 May 2018

String Concat join function in C Language





#include<stdio.h>

#include<conio.h>

#include <string.h>



main()

{



char f[50];

char l[50];



printf("Enter the first name: ");

gets(f);



printf("\nEnter the Last name: ");

gets(l);



strcat(f,l);



puts(l);



}

No comments:

Post a Comment

Pass Dynamically Added Html Table Records List To Controller In Asp.net MVC

Controller Code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using ...