How can draw a box in cprogram without using graphics.h
header file & using only one printf(); ?
Answer Posted / chandan kumar r
#include<stdioh>
#include<conio.h>
void main()
{
printf("______________\n|______________|\n");
getch();
}
output:
____________________
|____________________|
| Is This Answer Correct ? | 37 Yes | 9 No |
Post New Answer View All Answers
What does typeof return in c?
What is the most efficient way to count the number of bits which are set in an integer?
What is the difference between ++a and a++?
Explain what are header files and explain what are its uses in c programming?
What is a good way to implement complex numbers in c?
What is main () in c language?
Can the sizeof operator be used to tell the size of an array passed to a function?
How can a number be converted to a string?
What is function definition in c?
how can use subset in c program and give more example
to find the closest pair
Why should I use standard library functions instead of writing my own?
How do you convert strings to numbers in C?
Why shouldn’t I start variable names with underscores?
What are derived data types in c?