4
Answers

write a c++ program that reads an integer

write a c++ program that reads an integer that represents the amount of money in NIS. And read a character that represents the type of currency you want to convert to. For example: - 'J' for JD, 'D' for dollar and 'E' for Euro. Then you program should convert the input amount of money to the corresponding currency by using the switch selection structure.
Hint
currency
Amount in NIS
JD
5.3
Euro
5.5
US dollar
3.7
 
Answers (4)
0
sathish kumar

sathish kumar

NA 9 4.2k 9y
Hi Praveen, 
 Thanks for your reply. 
   But in my situation,  it is not a DLL Hell Problem because am creating 2 dlls  at a time with a different name and different functionality and also in this dlls are not added in Registry Editor, it's saved only my application folder.
   I want Add Reference from A DLL to B DLL.
 
   public virtual Tuple<bool, string> isValid(Dynamic_Val_001)
   {
      return new Tuple<bool, string>(false, "Success");
   }
 
Dynamic_Val_001  is A DLL Class Name 
 
    
 
 
0
Praveen Dhatrika

Praveen Dhatrika

NA 840 2.1k 9y
To my understanding I think its like DLL HELL problem.
 
This kind of scenerio is generally termed as dllhell problem. 
Here is what it is,
 
1. I have 2 applications, A1 and A2 installed on my computer.

2. Both of these applications use shared assembly shared.dll

3. Now, I have a latest version of Application - A2 available on the internet.

4. I download the latest version of A2 and install it on my machine.

5. This new installation has over written Shared.dll, which is also used by Application - A1.

6. Application - A2 works fine, but A1 fails to work, because the newly installed Shared.dll is not backward compatible.

So, DLL HELL is a problem where one application will install a new version of the shared component that is not backward compatible with the version already on the machine, causing all the other existing applications that rely on the shared component to break. With .NET versioning we donot have DLL HELL problem any more.
 
also go through these links 

http://csharp-video-tutorials.blogspot.com/2012/07/dll-hell-part-6.html
http://venkataspinterview.blogspot.co.uk/2011/05/what-is-dll-hell-in-net.html 
http://csharp-video-tutorials.blogspot.com/2012/07/how-is-dll-hell-problem-solved-part-7.html
http://venkataspinterview.blogspot.co.uk/2011/06/how-is-dll-hell-problem-solved-in-net.html 

 If you find my post as useful then accept my reply as answer. :)