🌟 Practical Exam: Fundamentals of Programming
Name: ___________________________
1. Multiplication Table Generator
Write a C++ program that:
      Asks the user to enter a number
      Prints the multiplication table for that number from 1 to 10
📝 Example Output:
Enter a number: 5
5 x 1 = 5
5 x 2 = 10
...
5 x 10 = 50
2. Even or Odd Checker
Write a C++ program that:
      Takes an integer input from the user
      Checks whether the number is even or odd
      Displays the appropriate message
3. Function to Return the Sum of Two Numbers
Create a C++ function that:
      Takes two numbers as arguments
      Returns their sum
      Call the function from main() and display the result