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 is the difference between new and malloc functions?
What is union and structure in c?
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 nested structure?
What is function definition in c?
What are the ways to a null pointer can use in c programming language?
Why functions are used in c?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is masking?
What does the file stdio.h contain?
How would you rename a function in C?
Is calloc better than malloc?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Why static is used in c?
What is #line in c?