IN LINUX
1If ex1 is ex1.c’s excuation file.
Ex) ex1.c :
#include
int main()
{
printf(“Hellown”);
fflush(stdout);
for(;;);
return 0;
*Then, Use “objdump -D -M intel ex1” to dump the assemblycode of ex1.c. Find <main>.*
2. what’s the function of ./ex1 &
Expert Answer
An answer will be send to you shortly. . . . .