Consider an array int arr[25][5]. Assuming base address = 3000, calculate the address of the element arr[19][3] ? 64 Byte computer system*
Answers
Answered by
0
Explanation:
Predict the output of below program:
#include <stdio.h>
int main()
{
int arr[5];
// Assume that base address of arr is 2000 and size of integer
// is 32 bit
arr++;
printf("%u", arr);
return 0;
Similar questions