Question: Consider the code snippet: #include #include void functionWithStaticArray ( int arr [ ] , int size ) { printf ( % d ,

Consider the code snippet:
#include
#include
void functionWithStaticArray(int arr[], int size){
printf("%d
", sizeof(arr));
}
int main(){
int *nums=(int*)malloc(3*sizeof(int));
nums[0]=5;
nums[1]=4;
nums[2]=3;
nums[3]=2;
nums[4]=1;
functionWithStaticArray(nums,5);
printf("%d
", sizeof(nums));
free(nums);
return 0;
}
What will be printed by this code on a 64-bit system?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!