We can draw a box in cprogram by using only one printf();&
without using graphic.h header file?
Answer Posted / mohan reddy
yes the code is currect
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("\n______________\n|______________|");
getch();
}
output:
______________
|______________|
| Is This Answer Correct ? | 6 Yes | 7 No |
Post New Answer View All Answers
explain what are actual arguments?
what are bit fields? What is the use of bit fields in a structure declaration?
Explain how can I make sure that my program is the only one accessing a file?
Where is volatile variable stored?
What are identifiers c?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Explain how can I open a file so that other programs can update it at the same time?
What are the different properties of variable number of arguments?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Hi can anyone tell what is a start up code?
What are volatile variables in c?
What is #line used for?
Is javascript written in c?
How do we print only part of a string in c?
How can you increase the size of a statically allocated array?