Question: question 2 otected View - Save Soch Enable Editing ilings Review View Help ses Unless you need to edit, it's safer to stay in Protected
otected View - Save Soch Enable Editing ilings Review View Help ses Unless you need to edit, it's safer to stay in Protected View. Student Name: Student Number: Start Visual Studio 2019, Create a new project and write a C program that performs the following: 1. Input values of a, b, c using scan then calculate and print the result of the following formula: a + 12 + b b + 12 %5 C+6x7 2. Input an integer of three digits and print its ones, tens, and hundred factorials as follow: For integer 726, your program must print the following: 726 = 700 + 20 + 6 For integer, 801, your program should print: 801 = 800 + 0 + 1 Notes: You can use % operator to get the digits of the number as follow: Number % 10 = the ones Number / 10 % 10 = Tens Number / 100 = Hundreds 3. Attach screenshots for the questions and attach the .c files. 14
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
