We can draw a box in cprogram by using only one printf();&
without using graphic.h header file?
Answer Posted / parmjeet kumar
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("\n______________\n|______________|");
getch();
}
output:
______________
|______________|
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
Is it possible to pass an entire structure to functions?
What is a program flowchart?
What is the use of #define preprocessor in c?
Are c and c++ the same?
What does typedef struct mean?
Explain pointers in c programming?
What kind of structure is a house?
how to introdu5ce my self in serco
What is meant by type casting?
What is else if ladder?
How would you obtain the current time and difference between two times?
What is a newline escape sequence?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
praagnovation
In C, What is the #line used for?