Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how can u draw a rectangle in C

Answers were Sorted based on User's Feedback



how can u draw a rectangle in C..

Answer / rahul singh

Firstly we can use header file............
#include<graphics.h>

Steps to make rectangle in c.

1.Make main function
2.Detect graphic by using (int a=DETECT),(initgraph(&a,"c:\
\tc\\bgi");
3. Now use the value of x and y cordinates.
4. After that use the func. rectangle(int,int,int,int).
5. Now use line(0,0,0,0) set the value according to
u...........

Is This Answer Correct ?    5 Yes 2 No

how can u draw a rectangle in C..

Answer / sandeep mishra

With the help of

rectangle(int x1,int y1, int x2 ,int y2)

we pass 4 parameter x1 , y1 ,x2, y2 ;
where x1 is top left co-ordinate
y1 is top right co-ordinate
x2 is bottom left co-ordinate
y2 is bottom right co-ordinate

Is This Answer Correct ?    3 Yes 0 No

how can u draw a rectangle in C..

Answer / aishwarya

using initgraphics fn and rectangle(int left ,int top,int
right,int bottom)

Is This Answer Correct ?    3 Yes 0 No

how can u draw a rectangle in C..

Answer / ankit limbachiya

#include<graphics.h>
#include<conio.h>

void main()
{
int gdrive=DETECT, gmode;

initgraph(&gdrive, &gmode, "c:\\turboc3\\bgi " );
rectangle(200,50,350,150);

getch();
closegraph();
}

Is This Answer Correct ?    4 Yes 1 No

how can u draw a rectangle in C..

Answer / ramesh b penchal

#include<stdio.h>
#include<conio.h>
#include<graphics.h>
void main()
{
int driver,mode,x1,y1,x2,y2;
driver=DETECT;
initgraph(&driver,&mode,"c:\\tc\\bgi");
printf("Enter(x1,y1) and (x2,y2) co-ordinate values");
scanf("%d%d %d%d",&x1,&y1,&x2,&y2);
rectangle(x1,y1,x2,y2);
getche();
closegraph();
}

Is This Answer Correct ?    5 Yes 3 No

how can u draw a rectangle in C..

Answer / chinnadurai.s

Draws a rectangle (graphics mode)

Declaration:
void far rectangle(int left, int top, int right, int bottom);
draw a rectangle in c using the header file for
#include<graphics.h> and using function for
rectangle(int,int,int,int);

for example

rectangle (int x1,int y1,int x2,int y2)
x1,x2,y1,y2 is an integer datatypes and given the values.

rectangle(100,150,200,250);

Is This Answer Correct ?    4 Yes 2 No

how can u draw a rectangle in C..

Answer / dinesh

rectangle(int,int,int,int);

Is This Answer Correct ?    2 Yes 0 No

how can u draw a rectangle in C..

Answer / ripesh

Three ways as far as I read throught web and book
1 Using printf
2 Using rectangle function(int,int,int,int)
3 Using line function with appropriate coordinates

It's up to you.. first one doesn't require mode to be set
graphic.

Is This Answer Correct ?    2 Yes 0 No

how can u draw a rectangle in C..

Answer / rakesh

#include<stdio.h>
#define n 5
#define m 4
int main()
{ int i,j;
printf("%c",218);
for(i=1;i<=n;i++)
printf("%c",196);
printf("%c",191);
for(i=1;i<=m;i++)
{ printf("\n%c",179);
for(j=1;j<n;j++)
printf(" ");
printf(" %c",179);
}
printf("\n%c",192);
for(i=1;i<=n;i++)
printf("%c",196);
printf("%c",217);
getch();
return(0);
}
you can change the dimensions by changing n and m.

Is This Answer Correct ?    2 Yes 1 No

how can u draw a rectangle in C..

Answer / ankita vaidya

use #include<graphic.h> in the header file

den accept the 2 co-ordinates of opposite vertices of the diagonal

and use rectangle(int x.topleft,int y.topleft , int x.bottomright,int y.bottomright);

here (x.topleft.y.topleft) are co-ordinates of top-left vertex
and (x.bottomright,y.bottomright) are co ordinates of bottom right vertex.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Code Interview Questions

create a login program that ask username and password. if you input username or password 3 times wrong, the program will terminate else the program will prompt a message "congratulations"

2 Answers  


How to return multiple values from a function?

7 Answers  


main() { int c[ ]={2.8,3.4,4,6.7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf(" %d ",*c); ++q; } for(j=0;j<5;j++){ printf(" %d ",*p); ++p; } }

2 Answers   CSS, Wipro,


main() { int i, j, *p; i = 25; j = 100; p = &i; // Address of i is assigned to pointer p printf("%f", i/(*p) ); // i is divided by pointer p } a. Runtime error. b. 1.00000 c. Compile error d. 0.00000

3 Answers   HCL,


writte a c-programm to display smill paces

2 Answers  


# include <stdio.h> int one_d[]={1,2,3}; main() { int *ptr; ptr=one_d; ptr+=3; printf("%d",*ptr); }

1 Answers  


Finding a number multiplication of 8 with out using arithmetic operator

8 Answers   Eyeball, NetApp,


Write a program to print a square of size 5 by using the character S.

6 Answers   Microsoft,


void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }

2 Answers  


main() { struct student { char name[30]; struct date dob; }stud; struct date { int day,month,year; }; scanf("%s%d%d%d", stud.rollno, &student.dob.day, &student.dob.month, &student.dob.year); }

1 Answers  


main() { int i=0; for(;i++;printf("%d",i)) ; printf("%d",i); }

1 Answers   Zoho,


posted by surbhi just now main() { float a = 5.375; char *p; int i; p=(char*)&a; for(i=0;i<=3;i++) printf("%02x",(unsigned char) p[i]); } how is the output of this program is :: 0000ac40 please let me know y this output has come

2 Answers   GATE,


Categories