Answer Posted / bhuvanesh
C is a PROGRAMMING LANGUAGE......
| Is This Answer Correct ? | 45 Yes | 9 No |
Post New Answer View All Answers
How can I discover how many arguments a function was actually called with?
Why doesn't C support function overloading?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is NULL pointer?
What are register variables in c?
How to compare array with pointer in c?
What is memory leak in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How can I make it pause before closing the program output window?
How many bytes is a struct in c?
What is abstract data structure in c?
Explain Function Pointer?
Explain the difference between exit() and _exit() function?
Linked lists -- can you tell me how to check whether a linked list is circular?
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 ].