VOOZH about

URL: https://www.geeksforgeeks.org/c/draw-rectangle-c-graphics/

⇱ Draw Rectangle in C graphics - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Draw Rectangle in C graphics

Last Updated : 4 Oct, 2018
rectangle() is used to draw a rectangle. Coordinates of left top and right bottom corner are required to draw the rectangle. left specifies the X-coordinate of top left corner, top specifies the Y-coordinate of top left corner, right specifies the X-coordinate of right bottom corner, bottom specifies the Y-coordinate of right bottom corner. Syntax :
rectangle(int left, int top, int right, int bottom);
Examples:
Input : left = 150, top = 250, right = 450, bottom = 350;
Output : 
👁 Image
Input : left = 150, top = 150, right = 450, bottom = 450; Output : 👁 Image
Below is the implementation of the rectangle function : Output:
👁 Image
Comment