Write an assembly program that: • declares an array of interger pointers in assembly, • uses printf and scanf in assembl
Posted: Fri Apr 29, 2022 8:02 am
Write an assembly program that: • declares an array of interger pointers in assembly, • uses printf and scanf in assembly to prompt the user for an integer number • sets all pointers in the array point to this number in assembly • calls a C display function to show all integers pointed to in the array. o The display function should be written in a separate C file and called from the assembly program.