#include <stdio.h>
#include <stdint.h>
#include <stddef.h>

int32_t ad(int32_t *arr,size_t size){
    for(int32_t i=0;i<size;i++){
        printf("%d",arr[i]);
    }
}

int main(){
    int32_t arr[]={1,2,3,4,5};
    size_t size = sizeof(arr)/sizeof(arr[0]);
    
    ad(arr,size);
    printf("\n%ld",size);
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: