How can draw a box in cprogram without using graphics.h
header file & using only one printf(); ?
Answer Posted / jai
this is foolish question
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Why c is procedure oriented?
Where can I get an ansi-compatible lint?
Why is structure padding done in c?
What are pointers in C? Give an example where to illustrate their significance.
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Can variables be declared anywhere in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Define circular linked list.
Write a program in c to replace any vowel in a string with z?
How to define structures? ·
Explain what is the difference between functions getch() and getche()?
How to set file pointer to beginning c?
What is the return type of sizeof?
How can I avoid the abort, retry, fail messages?
What are the application of c?