1. A program to display a name. It prints "My name is John" using printf.
2. A program that adds two numbers. It uses scanf to input two integers, adds them together with +, and prints the result with printf.
3. A program that calculates the radius of a circle given its area. It uses scanf to input the area, calculates the radius by taking the square root of (area/pi), and prints the radius to 3 decimal places using printf and the format specifier %.3f.