- In C++, create a function that swaps the values of two variables.
- In any language, print the following for the numbers between 1 and 100:
- If the number is divisible by 3, print "Fizz"
- If the number is divisible by 5, print "Buzz"
- If the number is divisible by both 3 and 5, print "FizzBuzz"
- If the number is not divisible by 3 or 5, print the number
- In C++, create a function that reverses a string