Computer Science, asked by sbsms6926, 1 month ago

An integer array of size 15 is declared in a C program. The memory location of the first byte of the array is 2000. What will be the location of the 13th element of the array? Assume int data type takes 2 bytes of memory.​

Answers

Answered by hepatswayam
13

Explanation:

Chandra Shekhar Azad (About this soundpronunciation (help·info); sometimes also spelled Chandrasekhar;[3] 23 July 1906 – 27 February 1931), popularly known as by his self-taken name Azad ("Free"), was an Indian revolutionary who reorganised the Hindustan Republican Association (HRA) under its new name of Hindustan Socialist Republican Army (HSRA) after the death of its founder, Ram Prasad Bismil, and three other prominent party leaders, Roshan Singh, Rajendra Nath Lahiri and Ashfaqulla Khan. He often used the pseudonym "Balraj" when signing pamphlets issued as the commander in chief of the HSRA (Hindustan Socialist Republic Army).[

Answered by aadilshe786
0

Answer:

2024

Explanation:

we have given size of int is : 2 bytes = n

the value of offset from starting position is : 13-1 = 12

so the 13th element block starting address will be

starting_pos + offset x size

2000 + 12*2 = 2024

So 13th block address is 2024

Similar questions