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
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
Science,
6 months ago
Science,
6 months ago
Computer Science,
1 year ago
Computer Science,
1 year ago
English,
1 year ago