Question: Please write the code in C. Thank you! (Do not upload irrelevant answers, uploading irrelevant content will not be praised.) Write a program to compute

Please write the code in C. Thank you!
(Do not upload irrelevant answers, uploading irrelevant content will not be praised.)
Write a program to compute the greatest common denominator (GCD) of two integers which are inputted by user. The GCD is the largest positive integer that divides exactly both numbers (there are no remainders). For example, the GCD of 15 and 20 is 5 . The program should print the two numbers and GCD to the screen as follows: Please input the first number: Numberl Please input the second number: Number2 The GCD of Numberl and Number2 is: Result For example: Answer: (penalty regime: 10,20,% ) \begin{tabular}{|l|l|l|} \hline 1 & # Get input from the user \\ 2 & number1 = int (input("Please input the first number: ") ) \\ 3 & \end{tabular}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
