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
Do you know null pointer?
What is a constant?
How can I open a file so that other programs can update it at the same time?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What is the use of ?
What are the three constants used in c?
Explain how can you be sure that a program follows the ansi c standard?
Tell us the use of fflush() function in c language?
What is a structural principle?
Explain b+ tree?
What is pass by reference in functions?
Is there any data type in c with variable size?
Explain bitwise shift operators?
what does static variable mean?
Discuss the function of conditional operator, size of operator and comma operator with examples.