Answer Posted / ranjita
hi sunil
can you give me the code for that or can you explain in detail
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the general form of a C program?
How many types of sorting are there in c?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
How can you determine the size of an allocated portion of memory?
Difference between malloc() and calloc() function?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is the purpose of sprintf?
Are there any problems with performing mathematical operations on different variable types?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What functions are in conio h?
Why do we use return in c?
What is difference between structure and union in c?
Is c is a procedural language?
#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); }
Here is a good puzzle: how do you write a program which produces its own source code as output?