โช Choose the correct option.
Which of the following statements is correct about the below program?
#include
int main() {
int a[3][3] = {1,2,3, 4,5,6, 7,8,9};
printf("%d ",*(*(a + 2)));
return 0;
}
Which of the following statements is correct about the below progra
Which of the following statements is correct about the below program?
#include
int main() {
int a[3][3] = {1,2,3, 4,5,6, 7,8,9};
printf("%d ",*(*(a + 2)));
return 0;
}