This homework focuses on mastering printf() for output and scanf() for input. You'll learn format specifiers and create interactive programs.
Goal: Become comfortable with input/output operations in C programming!
Get input from user and display it!
Asks the user to enter their name and age, then displays the information back to them.
Get two numbers and display them!
Asks for two numbers and displays them in a formatted way.
Work with single characters!
Gets a single character from the user and displays it along with its ASCII value.
Work with decimal numbers!
Gets a decimal number from the user and displays it with different decimal places.
Create a complete information form!
Creates a student information form that collects name, age, grade, and displays all information in a formatted way.