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 draw a box in cprogram without using graphics.h
header file & using only one printf(); ?

Answers were Sorted based on User's Feedback



How can draw a box in cprogram without using graphics.h header file & using only one printf();..

Answer / chandan kumar r

#include<stdioh>
#include<conio.h>
void main()
{
printf("______________\n|______________|\n");
getch();
}

output:
____________________
|____________________|

Is This Answer Correct ?    37 Yes 9 No

How can draw a box in cprogram without using graphics.h header file & using only one printf();..

Answer / c.p.senthil

Generic Box routine,
to draw with prescribed length and width

// function defintion
void drawBox(int length, int width)
{
int i, j;

for(i=0; i<length; i++)
printf("_");
printf("\n");

for(j=0; j<width-1; j++)
{
printf("|");
for(i=0; i<(length-2); i++)
printf(" ");
printf("|");
printf("\n");
}

printf("|");
for(i=0; i<length-2; i++)
printf("_");
printf("|");
}

// function call
drawBox(30, 5);

Is This Answer Correct ?    1 Yes 1 No

How can draw a box in cprogram without using graphics.h header file & using only one printf();..

Answer / jai

this is foolish question

Is This Answer Correct ?    0 Yes 2 No

How can draw a box in cprogram without using graphics.h header file & using only one printf();..

Answer / veeramalliga

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("\n----------------\n");
printf("\n| |\n");
printf("\n| |\n");
printf("\n-----------------\n");
getch();
}

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More C Interview Questions

What is modeling?

0 Answers  


write a program to swap two variables a=5 , b= 10 without using third variable

5 Answers  


How do I read the arrow keys? What about function keys?

0 Answers  


What is auto keyword in c?

0 Answers  


What is the process of writing the null pointer?

0 Answers  


writw a program to insert an element in the begning of a doubly linked list

1 Answers  


Give me the code of in-order recursive and non-recursive.

0 Answers   DELL,


What is stack in c?

0 Answers  


what is the difference between 123 and 0123 in c?

0 Answers  


main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }

6 Answers  


How do you use a 'Local Block'?

0 Answers   Ericsson,


What is malloc and calloc?

0 Answers  


Categories