โช Choose the correct option.
What is the output of the following program on GCC compiler?
#include
int main() {
int a[5] = {2, 3};
printf("%d, %d, %d ", a[2], a[3], a[4]);
return 0;
}
What is the output of the following program on GCC compiler?
What is the output of the following program on GCC compiler?
#include
int main() {
int a[5] = {2, 3};
printf("%d, %d, %d ", a[2], a[3], a[4]);
return 0;
}