SyntaxFix
Write A Post
Hire A Developer
Questions
Best example is here
thanks #define SIZE 10
void size(int arr[SIZE]) { printf("size of array is:%d\n",sizeof(arr)); } int main() { int arr[SIZE]; size(arr); return 0; }