About Me

My photo
Raipur, Chhattisgarh, India
Hi , I am Amit Thakur. I have worked as a QA Engineer for two years and as a Java Developer for one year in NIHILENT TECHNOLOGIES PVT. LTD., Pune.Currently I am working as DEAN (Research & Development) in Bhilai Institute of Technology, Raipur.

Monday, September 2, 2013

copy all elements of an array into another array in C

  1. //Title : Copy Array Elements from one array to another  
  2. //a - Source Array ( elements will be copied from this array)  
  3. //b - Destination array ( elements copied into this array)  
  4. //---------------------------------------------------------------------  
  5.   
  6. #include  
  7. #include  
  8. void main()  
  9. {  
  10.  int a[30],b[30],i,n;  
  11.   
  12.  // Element of an array 'a' will be copied into array 'b'  
  13.   
  14.  printf("\n Enter no of elements :");  
  15.  scanf("%d",&n);  
  16.   
  17.  /* Accepting values into Array a*/  
  18.  printf("\n Enter the values :");  
  19.        for(i = 0 ; i < n ; i++)  
  20.               scanf("%d",&a[i]);  
  21.   
  22.  /* Copying data from array 'a' to array 'b */  
  23.   
  24.  for(i = 0 ;i < n ; i++)  
  25.    b[i]=a[i];  
  26.   
  27.  /* printing of all elements of array */  
  28.   
  29.  printf("the copied array is :");  
  30.       for(i=0;i < n;i++)  
  31.  printf("\nb[%d]=%d",i,b[i]);  
  32.  getch();  
  33. }  

No comments: