-
-
-
Acrobat Plug-in getting triggered automatically
HiI am new to this site and have no idea where to post this question. I will really appreciate if someone can help me solve this problem. I am developing an acrobat plug-in for Acrobat professional 9 which will export all annotations in original document into an xfdf document.The plug-in must get triggered on saving the original document after creation of annotation.For this I captured before save...
-
-
-
-
-
Classes
What error is caused by the following code ?class TemperatureList { public: TemperatureList( ); private: double * list; int size;};void func(Money amount);[...]int main{ TemperatureList list1; func(list1); return 0;}Choose one answer. a. double free b. divide by zero c. illegal argument d. no error
-
-
-
-
C++ open ended experiment
The objective of this open ended experiment is to develop an ISE DEPARTMENT INFORMATION SYSTEM application using C++. The primary emphasis of the experiment is to understand and gain knowledge of principles of object oriented programming concepts so as to apply these concepts in implementing real world problems. Students should take this work seriously as these efforts will be useful for developing...
-
-
-
-
-
C++ programming function help
I'm having some trouble trying to program these problems and putting them into the main function. Please help me by giving some advice or website that offer good information for me.1. Write a function that accepts a string of characters from a user and displays the string one word per line.2. Write a function that accepts a string of characters, then output all the characters of the string in a reversed...
-
-
What is the Size of an Empty Class
What is the logic behind size of an empty class = 1? (As per C++)Ex:class base {};main(){printf("Size of the Empty Class is: %dn", sizeof(base));}It gives output: Size of the Empty Class is: 1I have not got the reason / logic behind this.Can anyone help me?
-
Copy Constructor
Explain what is copy constructor and what is the difference between copy constructor and overloaded assignment operator
C++ Interview Questions
Ans