how can u draw a rectangle in C
Answers were Sorted based on User's Feedback
Answer / sunny khanna
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
void main()
{
int driver,mode;
driver=DETECT;
initgraph(&driver,&mode,"c:\\tc\\bgi");
rectangle(100,100,250,250);
getche();
closegraph();
}
| Is This Answer Correct ? | 46 Yes | 11 No |
Answer / venkatesh
line(x1,y1,x2,y1)
line(x1,y2,x2,y2)
line(x1,y1,x1,y2)
line(x2,y1,x2,y2)
| Is This Answer Correct ? | 51 Yes | 17 No |
Answer / srinivas.m
#include<graphics.h>
#include<conio.h>
void main()
{
int gd=DETECT, gm;
initgraph(&gd, &gm, "c:\\turboc3\\bgi " );
rectangle(200,50,350,150);
getch();
closegraph();
}
| Is This Answer Correct ? | 25 Yes | 5 No |
Answer / shrikant
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n;
clrscr();
printf("Enter the value of n\n");
scanf("%d",&n);
for(i=0;i<=n;i++)
{
for(j=0;j<=2*n;j++)
{
if((i>0 && i<n) && (j>0 && j<2*n))
{
printf(" ");
}
else
{
printf("* ");
}
}
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 23 Yes | 4 No |
Answer / prabhanjan
#include
#include
#include
main()
{
int gd=DETECT, gm,x,y;
int arr[]={540,220,590,270,570,320,510,320,490,270,540,220};
initgraph(&gd,&gm,"c:\\tc\\bgi");
x=getmaxx();
y=getmaxy();
setcolor(GREEN);
printf(" \n value of x = %d",x);
printf(" and the value of y = %d",y);
rectangle(5,40,140,200);
outtextxy(x/30+15,y/8+5,"Rectangle");
drawpoly(6,arr);
outtextxy(515,270,"Polygon");
setcolor(RED);
line(0,49,639,479);
line(0,0,0,479);
line(0,0,639,0);
line(639,0,639,479);
getch();
closegraph();
restorecrtmode();
}
| Is This Answer Correct ? | 21 Yes | 13 No |
Answer / sabarinathan
void main()
{
int n=0,i=0;
printf("how many lines should rectangle can occupied");
scanf("%d",n);
printf("____________");
prinf("/n");
for(i=0;i<=n;i++)
{
printf("| |");
printf("/n");
}
printf("____________")
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / joker
why do you want to draw rectangle using C if you can do it
in a paper its more simpler and faster, no developer
required hence cost effective.
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / vignesh
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
#include<dos.h>
int main()
{
int driver,mode;
detectgraph(&driver,&mode);
initgraph(&driver,&mode,"...\\bgi");
setcolor(8);
for(i=10;i<201;i++)
{
sound(i);
rectangle(200,50,350,150);
delay(1000);
nosound();
}
getch();
}
| Is This Answer Correct ? | 7 Yes | 4 No |
void main() { int c; c=printf("Hello world"); printf("\n%d",c); }
main() { static int a[3][3]={1,2,3,4,5,6,7,8,9}; int i,j; static *p[]={a,a+1,a+2}; for(i=0;i<3;i++) { for(j=0;j<3;j++) printf("%d\t%d\t%d\t%d\n",*(*(p+i)+j), *(*(j+p)+i),*(*(i+p)+j),*(*(p+j)+i)); } }
main ( ) { static char *s[ ] = {“black”, “white”, “yellow”, “violet”}; char **ptr[ ] = {s+3, s+2, s+1, s}, ***p; p = ptr; **++p; printf(“%s”,*--*++p + 3); }
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
#define f(g,g2) g##g2 main() { int var12=100; printf("%d",f(var,12)); }
main() { char string[]="Hello World"; display(string); } void display(char *string) { printf("%s",string); }
void main() { unsigned giveit=-1; int gotit; printf("%u ",++giveit); printf("%u \n",gotit=--giveit); }
how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns
void main() { int i=5; printf("%d",i++ + ++i); }
What is wrong with the following code? int *foo() { int *s = malloc(sizeof(int)100); assert(s != NULL); return s; }
main() { char *p="GOOD"; char a[ ]="GOOD"; printf("\n sizeof(p) = %d, sizeof(*p) = %d, strlen(p) = %d", sizeof(p), sizeof(*p), strlen(p)); printf("\n sizeof(a) = %d, strlen(a) = %d", sizeof(a), strlen(a)); }
main() { int i, j; scanf("%d %d"+scanf("%d %d", &i, &j)); printf("%d %d", i, j); } a. Runtime error. b. 0, 0 c. Compile error d. the first two values entered by the user