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
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is identifiers in c with examples?
What is a void * in c?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Is multithreading possible in c?
What is a pointer variable in c language?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is pragma c?
ATM machine and railway reservation class/object diagram
What is a null string in c?
Using which language Test cases are added in .ptu file of RTRT unit testing???
What does typeof return in c?
How main function is called in c?
Can the curly brackets { } be used to enclose a single line of code?
What is c token?