#includeDescription of Examples: In this example, we draw a circle at (200, 200) using the graphics library. Then, we use the getY function to retrieve the Y-coordinate of the circle's center, and print it to the console. Package Library: The package library used in this example is the Graphics.h header file, which is part of the C++ graphics library.#include int main() { initwindow(640, 480, "My Window"); // Draw a circle at (200, 200) circle(200, 200, 50); // Get the Y-coordinate of the circle's center int y = getY(); std::cout << "Y-coordinate of circle's center: " << y << std::endl; getch(); closegraph(); return 0; }