what is difference between procedural language and functional language ?
Answer Posted / sanjiv
In procedural language object is not used
In functional language object is used
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
What are the uses of null pointers?
What is #ifdef ? What is its application?
How can you increase the size of a dynamically allocated array?
Can you write the function prototype, definition and mention the other requirements.
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 the use of function overloading in C?
What is the purpose of sprintf?
Why are all header files not declared in every c program?
Can we change the value of constant variable in c?
What is wild pointer in c with example?
Describe the header file and its usage in c programming?
What is indirection? How many levels of pointers can you have?
What is the purpose of void in c?
Is there a way to switch on strings?
How can you pass an array to a function by value?