We can draw a box in cprogram by using only one printf();&
without using graphic.h header file?
Answer Posted / chandan kumar r
yes the code is currect
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("\n______________\n|______________|");
getch();
}
output:
______________
|______________|
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Explain what are multibyte characters?
What is the purpose of ftell?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What are actual arguments?
What is the symbol indicated the c-preprocessor?
What is the -> in c?
What is calloc malloc realloc in c?
Can a variable be both constant and volatile?
Explain what is the best way to comment out a section of code that contains comments?
What is %lu in c?
Describe the difference between = and == symbols in c programming?
What is size of union in c?
What is meant by int main ()?