Copy Array Elements in C
  • Twitter
  • Facebook
  • Snapchat
  • Instagram

Copy Array Elements in C: Program to Copy One Array to Another

📑 On this page:
  • Introduction
  • C Program to Copy Array
  • Sample Output
  • Program Explanation
  • Using memcpy Function
  • Practice Exercise
  • Frequently Asked Questions
📚 In this tutorial, you will learn:
  • How to copy elements from one array to another
  • Two methods: using a loop and using memcpy
  • How to display both source and destination arrays
  • Step-by-step explanation of the program
  • Practice exercises to test your understanding

Introduction

In this tutorial, we will learn how to write a C program to copy elements from one array to another.

Copying an array is a common operation in programming. It is used in many real-world applications, such as:

  • Creating a backup copy of data before modification
  • Passing data to functions without modifying the original
  • Sorting or processing data while keeping the original intact
  • Duplicating data for parallel processing

💡 Key Point: When copying an array, you need to copy each element individually. Unlike some languages, C does not allow direct array assignment with the = operator.

C Program to Copy Array Elements (Method 1: Using Loop)

#include <stdio.h>

int main() {
    int n, i;
    
    // Ask user for number of elements
    printf("Enter the number of elements: ");
    scanf("%d", &n);
    
    // Declare arrays
    int source[n];
    int destination[n];
    
    // Read elements into the source array
    printf("Enter %d elements:\n", n);
    for(i = 0; i < n; i++) {
        scanf("%d", &source[i]);
    }
    
    // Copy elements from source to destination
    for(i = 0; i < n; i++) {
        destination[i] = source[i];
    }
    
    // Display source array
    printf("\nSource array: ");
    for(i = 0; i < n; i++) {
        printf("%d ", source[i]);
    }
    
    // Display destination array
    printf("\nDestination array: ");
    for(i = 0; i < n; i++) {
        printf("%d ", destination[i]);
    }
    printf("\n");
    
    return 0;
}

Sample Output

Enter the number of elements: 5
Enter 5 elements:
10 20 30 40 50

Source array: 10 20 30 40 50
Destination array: 10 20 30 40 50

Another Example:

Enter the number of elements: 4
Enter 4 elements:
5 15 25 35

Source array: 5 15 25 35
Destination array: 5 15 25 35

Program Explanation

Let's break down the code step by step:

  1. Include Header File: #include <stdio.h> includes the standard input/output library.
  2. Declare Variables:
    • int n; — stores the number of elements
    • int i; — loop counter
  3. Declare Arrays:
    • int source[n]; — the original array
    • int destination[n]; — the array where elements will be copied
  4. Get User Input: Prompts the user to enter the number of elements and then reads them into the source array.
  5. Copy the Array: The for loop copies each element from source to destination:
    • destination[i] = source[i];
    • This copies the value at index i from source to index i in destination
  6. Display Results: Prints both the source and destination arrays to verify the copy.
  7. Return: return 0; indicates successful program execution.

📝 Note: In C, you cannot assign one array to another directly using destination = source;. You must copy each element individually using a loop.

Method 2: Using memcpy Function (More Efficient)

The memcpy() function from string.h library provides a faster way to copy arrays. It copies a block of memory from source to destination.

#include <stdio.h>
#include <string.h>  // Required for memcpy

int main() {
    int n, i;
    
    printf("Enter the number of elements: ");
    scanf("%d", &n);
    
    int source[n];
    int destination[n];
    
    printf("Enter %d elements:\n", n);
    for(i = 0; i < n; i++) {
        scanf("%d", &source[i]);
    }
    
    // Copy using memcpy
    memcpy(destination, source, n * sizeof(int));
    
    // Display source array
    printf("\nSource array: ");
    for(i = 0; i < n; i++) {
        printf("%d ", source[i]);
    }
    
    // Display destination array
    printf("\nDestination array: ");
    for(i = 0; i < n; i++) {
        printf("%d ", destination[i]);
    }
    printf("\n");
    
    return 0;
}

Sample Output:

Enter the number of elements: 6
Enter 6 elements:
10 20 30 40 50 60

Source array: 10 20 30 40 50 60
Destination array: 10 20 30 40 50 60

How memcpy Works

  • memcpy(destination, source, n * sizeof(int));
  • destination: Pointer to the destination array
  • source: Pointer to the source array
  • n * sizeof(int): Number of bytes to copy
  • Advantage: Faster than manual loop for large arrays

Algorithm to Copy Array Elements

  1. Start
  2. Read the number of elements (n)
  3. Read n elements into the source array
  4. For i = 0 to n-1:
    • Set destination[i] = source[i]
  5. Print both source and destination arrays
  6. End

💻 Practice Exercise

Challenge 1: Write a program to copy only the even numbers from one array to another.

Challenge 2: Copy an array in reverse order to another array.

🔍 Click to Show Solution for Challenge 2
#include <stdio.h>

int main() {
    int n, i;
    
    printf("Enter the number of elements: ");
    scanf("%d", &n);
    
    int source[n];
    int destination[n];
    
    printf("Enter %d elements:\n", n);
    for(i = 0; i < n; i++) {
        scanf("%d", &source[i]);
    }
    
    // Copy in reverse order
    for(i = 0; i < n; i++) {
        destination[i] = source[n - 1 - i];
    }
    
    printf("\nSource array: ");
    for(i = 0; i < n; i++) {
        printf("%d ", source[i]);
    }
    
    printf("\nDestination (reversed): ");
    for(i = 0; i < n; i++) {
        printf("%d ", destination[i]);
    }
    printf("\n");
    
    return 0;
}

Frequently Asked Questions

1. How do you copy an array in C?

You can copy an array in C using a loop (copying each element individually) or using the memcpy function from the string.h library.

2. Can I assign one array to another using the equals operator?

No, you cannot use destination = source; in C. You must copy each element individually using a loop or use memcpy().

3. Which method is faster: loop or memcpy?

The memcpy function is generally faster because it is optimized in C libraries. For large arrays, memcpy is significantly faster than a manual loop.

4. What if the arrays have different sizes?

Both arrays should have the same size. If the destination array is larger, only the first n elements will be copied. If it's smaller, you'll get a buffer overflow error.

5. Can I copy arrays of different data types?

No, arrays of different data types cannot be directly copied. You would need to convert each element individually or use typecasting.

💡 Tip: When using memcpy, always ensure the destination array is large enough to hold the copied data to avoid buffer overflow.

📖 Related Tutorials

  • Reverse an Array in C
  • Merge Two Arrays in C
  • Frequency of Each Element in Array
  • More Array Assignments

Previous Topic: -->> Reverse an Array in C   ||   Next topic: -->> Merge Two Arrays in C


📚 Explore More Topics

🗄️ SQL Interview Questions & Answers

SQL SELECT Statement FAQ SQL Restricting & Sorting Data FAQ SQL Group Functions & Aggregated Data FAQ SQL Multiple Tables (JOINs) FAQ SQL Subqueries FAQ SQL DML Statements (Managing Tables) FAQ SQL Indexes, Synonyms & Sequences FAQ SQL DDL (Tables & Relationships) FAQ SQL Views FAQ SQL Indexing Best Practices FAQ SQL Window & Analytic Functions FAQ

🐍 Python Interview Questions & Answers

Python Interview Questions Python Syntax & Variables FAQ Python Data Types FAQ Python If-Else FAQ Python Loops FAQ Python Functions Interview Q Python String Manipulation FAQ Python Lists & Dictionaries FAQ Python Tuples & Sets FAQ Python Exception Handling FAQ Python OOP Interview Questions

☕ Java Interview Questions & Answers

Java Introduction Interview Q Java Development Environment FAQ Java Data Types FAQ Java Control Flow & Operators FAQ Java Basic Input/Output FAQ Java Arrays FAQ Java Strings FAQ Java Methods FAQ Java Basic OOP Concepts FAQ Java Advanced OOP Concepts FAQ Java OOP Best Practices FAQ Java Exception Handling FAQ Java Synchronization FAQ Java Threads & Concurrency FAQ Java Collection Framework FAQ Java File I/O & Serialization FAQ Java Serialization & Deserialization FAQ Java Features FAQ Java Inner & Anonymous Classes FAQ Java Memory Management FAQ Java Packages FAQ Java Wrapper Classes FAQ Java Streams & Lambda FAQ

C Language

  • Home
  • Why C Language
  • History of C Language
  • Applications of C Language
  • Introduction To C
    • What is Program?
    • Structure of C Program
    • Working Of C Program
    • CHARACTER SET
    • VARIABLES AND IDENTIFIERS
    • BUILT-IN DATA TYPES
    • OPERATORS AND EXPRESSIONS
    • CONSTANTS AND LITERALS
    • SIMPLE ASSIGNMENT STATEMENT
    • BASIC INPUT/OUTPUT STATEMENT
    • SIMPLE 'C' PROGRAMS
    • Assignments
  • Operators in C Programming
    • Arithmetic Operators
    • Assignment Operators
    • Increment and Decrement Operators
    • Relational Operators
    • Logical Operators
    • Bitwise Operators
    • Other Operators
    • Assignments
  • Conditional Statements
    • DECISION MAKING WITHIN A PROGRAM
    • CONDITIONS
    • IF STATEMENT
    • IF-ELSE STATEMENT
    • IF-ELSE LADDER
    • NESTED IF-ELSE
    • SWITCH CASE
    • Assignments
  • Loops Statements
    • Introduction to Loops
    • GO TO Statement
    • Do while Loop
    • While Loop
    • Nested While Loop
    • Difference Between While and Do while
    • Difference Between Goto and loop
    • while loop assignments
    • C FOR Loop
    • C For loop examples
    • Nested for loop
    • Nested for loop examples
    • Infinite while Loops
    • Infinite for Loops
    • Continue in Loops
    • break in Loops
    • difference while do..while & for
    • Assignments
  • Arrays
    • One Dimensional Array
    • Declaring 1D Arrays
    • Initilization of 1D arrays
    • Accessing element of one 1D Array
    • Read and Display 1D Arrays
    • Two Dimensional Arrays
    • Declare 2D Arrays
    • Read and Display 2D Arrays
    • Assignments/Examples
  • Functions
    • Introduction
    • Need For User-Defined Function
    • Multiple Function Program
    • Modular Programming
    • Elements Of User Defined Function
    • Function Definition
    • Function Declaration
    • Types of functions
    • Nesting of Function
    • Recursion
    • Passing Array To Functions
    • Scope,Visibility and Lifetime of Variables
    • Assignments
  • Structure
    • Introduction
    • Array vs Structure
    • Defining Structure
    • Declaring Structure Variables
    • Type Defined Structure
    • Accessing Structure Members
    • Structure Initilization
    • Copying & Comparing Structure Variables
    • Array of Structure
    • Arrays Within Structure
    • Structures Within Structures
    • Structures and Functions
    • Structure Examples/Assignments
  • Union
    • Define Union
    • Create and use Union
    • Difference Between Structure and Union
    • Union Examples
    • Union FAQ
  • Pointers
    • What Are Pointers In C?
    • How Do We Use Pointers In C?
    • Declaration Of A Pointer
    • The Initialization Of A Pointer
    • Syntax Of Pointer Initialization
    • Use Of Pointers In C
    • The Pointer To An Array
    • The Pointer To A Function
    • The Pointer To A Structure
    • Types Of Pointers
    • The Null Pointer
    • The Void Pointer
    • The Wild Pointer
    • The Near Pointer
    • The Huge Pointer
    • The far Pointer
    • dangling pointer
    • Accessing Pointers- Indirectly And Directly
    • Pros Of Using Pointers In C
    • Cons Of Pointers In C
    • Applications Of Pointers In C
    • The & Address Of Operator In C
    • How To Read The Complex Pointers In C?
    • Practice Problems On Pointers
  • File Processing
    • File Handling In C
    • Types Of Files In C
    • Operations Done In File Handling
    • File Examples
    • Binary Files
    • count words,lines in a file
    • Copy files
    • Update File
    • count vowels in a file
  • Preprocessor
    • Macro substitution division
    • File Inclusion
    • Conditional Compilation
    • Other directives
    • Examples
  • Dynamic Memory Allocation
    • malloc
    • calloc
    • free
    • realloc
    • Examples
  • Storage Classes
  • Graphics
  • Frequently Asked Interview Questions (FAQ)
    • Introduction To C FAQ
    • Operators FAQ
    • Conditional Statements FAQ
    • Loops FAQ
    • Arrays FAQ
    • Function FAQ
    • Structure FAQ
    • Pointers FAQ
    • Files FAQ
    • Storage classes FAQ
    • Dynamic Memory FAQ
  • Programs/Assignments
    • Introduction To C
    • Operators
    • Conditional Statements
    • Loops
    • Arrays
    • Function
    • Structure
    • Pointers
    • Files
    • Storage classes
    • Dynamic Memory
  • Case Studies
  • Multiple Choice Questions
    • Introduction To C MCQ
    • Operators MCQ
    • Conditional Statements MCQ
    • Loops MCQ
    • Arrays MCQ
    • Function MCQ
    • Structure MCQ
    • Pointers MCQ
    • Files MCQ
    • Storage classes MCQ
    • Dynamic Memory MCQ
    • More MCQ

Get in touch

  • tech2dsm@gmail.com

© Sankalan Data Tech. All rights reserved.