We can draw a box in cprogram by using only one printf();&
without using graphic.h header file?
Answer Posted / chandan kumar r
yes the code is currect
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("\n______________\n|______________|");
getch();
}
output:
______________
|______________|
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Write a program to print factorial of given number using recursion?
Describe the order of precedence with regards to operators in C.
Can we add pointers together?
What is extern variable in c with example?
What are preprocessor directives in c?
What is a good data structure to use for storing lines of text?
When is a void pointer used?
How can I find the modification date and time of a file?
What is the general form of a C program?
What are different types of variables in c?
What is the difference between fread buffer() and fwrite buffer()?
What are linker error?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What are the advantages of Macro over function?
Explain what is the heap?