Complete the code to declare the interrupt vector table array.
void (*interrupt_vector_table[])() = { [1] };The interrupt vector table is an array of function pointers to handlers like Reset_Handler.
Complete the code to define the Reset_Handler function.
void [1]() {
// Initialization code
}The Reset_Handler is the function called on system reset.
Fix the error in the vector table declaration by completing the blank.
void (*vector_table[])() = { Reset_Handler, [1], HardFault_Handler };The second entry in the vector table is the NMI_Handler function pointer.
Fill both blanks to complete the vector table with correct handlers.
void (*vector_table[])() = { [1], [2], HardFault_Handler };The vector table starts with Reset_Handler, then NMI_Handler, followed by HardFault_Handler.
Fill all three blanks to create a vector table with uppercase handler names and a default handler.
void (*vector_table[])() = { [1], [2], [3] };This vector table uses uppercase handler names. The first is MAIN_HANDLER, then DEFAULT_HANDLER, and finally NMI_HANDLER.