Answer Posted / 08571a0405
DENNIS RITCHID
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is c so important?
What is difference between structure and union in c programming?
What is the ANSI C Standard?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
When should you use a type cast?
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 ].
What is a nested loop?
What is a dynamic array in c?
What are derived data types in c?
Explain how can I remove the trailing spaces from a string?
What is array of pointers to string?
What is #include conio h?
What is data structure in c programming?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?