Computer Science, asked by shubhsahu3522, 1 year ago

Given an array int marks[ ]={99,76,87,65,88,90,43,58}. Calculate the address of marks[5] if base address is 1009. C

Answers

Answered by raginimishra08082001
0

Answer:

#include<stdio. h>

#include<conio. h>

void main ( )

{

int marks[]= {99, 76, 87, 65, 88, 90, 43, 58};

clrscr();

printf ("the address of array %d", 5);

printf ("the value of marks in index 8%d", 5)

getch ( );

}

Explanation:

dekho shayad yhi hoga

Similar questions