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
Write a program to print fibonacci series without using recursion?
What is volatile variable in c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What is the role of this pointer?
What are the advantage of c language?
How do you generate random numbers in C?
How can you tell whether a program was compiled using c versus c++?
How can I write functions that take a variable number of arguments?
What is the difference between mpi and openmp?
what is the different bitween abap and abap-hr?
What is wrong with this program statement?
What does 2n 4c mean?
What is the size of structure pointer in c?
Explain what is wrong with this program statement? Void = 10;
Differentiate between ordinary variable and pointer in c.