SHARE
TWEET

Untitled




Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int N;
- //printf("Enter the length of an array : ");
- scanf("%d",&N);
- int arr1[N],arr2[N];
- for(int i=0; i<N; i++)
- {
- scanf("%d",arr1[i]);
- }
- for (int i=0; i<N; i++)
- {
- arr2[i] = arr1[i];
- printf("%d ",arr2);
- }
- return 0;
- }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.