1.

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

Answer»

#include#includevoid 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



Discussion

No Comment Found