// A program to revise the following concepts // Using scanf to read in data from the user of types // int and double // // Written by: Angela Finlayson // Date: 14/09/2024 #include int main(void) { int x; int y; printf("Enter 2 integers: "); scanf("%d %d", &x, &y); printf("You entered %d %d\n", x, y); double real; printf("Enter a real number: "); scanf("%lf", &real); printf("You entered %lf\n", real); return 0; }