Skip to content

Instantly share code, notes, and snippets.

@programmingfaster0226
Created February 20, 2018 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save programmingfaster0226/35e14c3394ce4cfbe82cc0108ddb21e2 to your computer and use it in GitHub Desktop.
Save programmingfaster0226/35e14c3394ce4cfbe82cc0108ddb21e2 to your computer and use it in GitHub Desktop.
programmingfaster.com
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char s1[100],s2[100];
printf("enter first & last name");
scanf("%s%s",s1,s2);
printf("\nfull name=%s",strcat(s1,s2));
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment