In: Computer Science
C Program :
// stdio.h is a header file in C language to use printf() to display on the screen.
#include <stdio.h>
void display() // display is a function to print the required output
{
printf("Emancipation of women in Ghana was led by Nana Agyeman Rawlings");
}
int main() // Inorder to call the function we need to call it by creating a function called main
{
display();
return 0; // returns 0 as our main() function's return type is integer (which expects integer)
}
OUTPUT :