How can draw a box in cprogram without using graphics.h
header file & using only one printf(); ?
Answer Posted / chandan kumar r
#include<stdioh>
#include<conio.h>
void main()
{
printf("______________\n|______________|\n");
getch();
}
output:
____________________
|____________________|
| Is This Answer Correct ? | 37 Yes | 9 No |
Post New Answer View All Answers
What are header files in c?
Can you apply link and association interchangeably?
What is the difference between scanf and fscanf?
What is the purpose of void in c?
What is logical error?
What are the 5 types of organizational structures?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
What are Macros? What are its advantages and disadvantages?
Describe the header file and its usage in c programming?
Why do we use return in c?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Difference between MAC vs. IP Addressing
Can you subtract pointers from each other? Why would you?
Can we assign integer value to char in c?
What is difference between structure and union with example?