What language is a dll written in?
No Answer is Posted For this Question
Be the First to Post Answer
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
What is the handle class?
What are the differences between a struct and a class in C++?
what is the behaviour of C and C++ compiler for the below statements. int *p; p = malloc(100); Is the behaviour same ? or different ?
Describe about storage allocation and scope of global, extern, static, local and register variables?
Is sorted c++?
What is void pointer in c++ with example?
When one must use recursion function? Mention what happens when recursion functions are declared inline?
How the delete operator differs from the delete[]operator?
Write a code/algo to find the frequency of each element in an array?
Is c++ a good first language to learn?
Difference between Abstraction and encapsulation in C++?