// A program to revise the following concepts // Using scanf to read in data from the user of types // char // // Written by: Angela Finlayson // Date: 14/09/2024 #include int main(void) { char character; // printf("Enter a character: "); // scanf("%c", &character); // printf("%c\n", character); printf("Enter a character: "); //What does the space before %c do in scanf? scanf(" %c", &character); printf("%c\n", character); return 0; }