What would be the output of the following program, if the array beigns at address 65486?
main()
{
int arr[] = {12,14,15,23,45};
printf ("%u %u", arr, &arr);
}5
854 5b5cc7dde4d2b419777515d9
Q: What would be the output of the following program, if the array beigns at address 65486? main() { int arr[] = {12,14,15,23,45}; printf ("%u %u", arr, &arr); }
- Show Answer
- Workspace
- Discuss