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
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What is the use of typedef in c?
Describe the difference between = and == symbols in c programming?
What is bubble sort technique in c?
How to declare a variable?
Explain modulus operator.
What will the preprocessor do for a program?
What language is lisp written in?
What are qualifiers and modifiers c?
regarding pointers concept
What is the difference between break and continue?
What is the default value of local and global variables in c?
What is the use of function in c?
Why does notstrcat(string, "!");Work?
What is the stack in c?