โช Choose the correct option.
What will be the output of the program assuming that the array begins at the location 1000 on GCC compiler?
#include
int main() {
int a[3][4] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 };
printf("%u, %d, %d ", a[0]+1, *(a[0]+1), *(*(a+0)+1));
return 0;
}