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 about C function prototype?
What is the use of function in c?
What is malloc return c?
What is a stream?
What is #include in c?
What is a pointer on a pointer in c programming language?
What does a pointer variable always consist of?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
what is event driven software and what is procedural driven software?
How can I do peek and poke in c?
What is header file definition?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is the purpose of macro in C language?
What is a double c?
How are 16- and 32-bit numbers stored?