Answer Posted / guest
extern double sin(double)
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
How would you obtain the current time and difference between two times?
What are comments and how do you insert it in a C program?
Why do we need a structure?
write an algorithm to display a square matrix.
Is a house a mass structure?
What are the types of functions in c?
How to declare a variable?
Why is c so powerful?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
How do I read the arrow keys? What about function keys?
How to delete a node from linked list w/o using collectons?
What is the explanation for prototype function in c?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
difference between object file and executable file
How can I invoke another program or command and trap its output?