Untitled

 avatar
unknown
c_cpp
2 years ago
217 B
3
Indexable
#include<stdio.h>
#include<stdlib.h>
#include<string.h>

int main(void){
    int a[]={1,2,3,4,5};
    int b[5];
    // b = a ; // I know this will not work.
    
    memcpy(b, a, sizeof(int)* 5);
    
    return 0;

}
Editor is loading...