Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  concatenate two strings c language

Here is an example code to concatenate two strings using clanguage.
Cut & Paste Script
#include <string.h>
#include <stdio.h>
    int main()
    {
        char first[100];
        char last[100];
        char full_name[200];

        strcpy(first, "first");
        strcpy(last, "second");

        strcpy(full_str, first);

        strcat(full_str, " ");
        strcat(full_str, last);

        printf("Complete string is %s\n", full_str);

        return (0);
    }
 
   
     RELATED SCRIPTS
 
C program to join two strings without using strcat
This c language program will join two strings without using strcat string function....more »
Category : C Programs Hits : 231
   
Printing triangle of numbers using c
Here is the source code for printing triangle of numbers using c language. In this example user will input a number, it will start from 1 and will go to the give number.
1
2 3
4 5 6
7 8 9 10...more »
Category : C Programs Hits : 1186
   
C program to show memory address of array elements and access array elements using pointers
This program will visualize the memory address of each array element and will show you how to access array elements using pointer....more »
Category : C Programs Hits : 527
   
arrays and pointers in c
An example code for arrays and pointers in c language....more »
Category : C Programs Hits : 582
   
Check number is prime or not using c

Here is a code example to check the number is prime or not a prime number. It will input number from user. If number is prime, it will print "Number is prime" on screen and if number is not prime it will print "Number is not prime".

...more »
Category : C Programs Hits : 2098
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download Super Affiliate Strategies Ebook Super Affiliate Strategies
   
Download C Sharp Beginners Ebook C Sharp Beginners
   
Download Step By Step Guide To Creating Your Own RSS Feed  Ebook Step By Step Guide To Creating Your Own RSS Feed
   
Download PodcastingForFun&Profit Ebook PodcastingForFun&Profit
   
Download Marketing Tips Volume 3  Ebook Marketing Tips Volume 3
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz