Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please write the following Y86 assembley instructions for the following C code. Please write in text so I can copy and paste. /* * C

please write the following Y86 assembley instructions for the following C code. Please write in text so I can copy and paste.

/* 
 * C program for Tower of Hanoi using Recursion 
 */ 
#include  
 
void towers(int, char, char, char); 
 
int main() 
{ 
 int num; 
 
 printf("Enter the number of disks : "); 
 scanf("%d", &num); 
 printf("The sequence of moves involved in the Tower of Hanoi are : "); 
 towers(num, 'A', 'C', 'B'); 
 return 0; 
} 
void towers(int num, char frompeg, char topeg, char auxpeg) 
{ 
 if (num == 1) 
 { 
 printf("  Move disk 1 from peg %c to peg %c", frompeg, topeg); 
 return; 
 } 
 towers(num - 1, frompeg, auxpeg, topeg); 
 printf("  Move disk %d from peg %c to peg %c", num, frompeg, topeg); 
 towers(num - 1, auxpeg, topeg, frompeg); 
} 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Next Generation Databases NoSQLand Big Data

Authors: Guy Harrison

1st Edition

1484213300, 978-1484213308

More Books

Students also viewed these Databases questions