Click here to Skip to main content
15,904,822 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
While I compile the program in borland c++ I get “Unable to open nable to open sstream.
So Please provide any solution for this.

What I have tried:

<pre><pre>While I compile the program in borland c++ I get “Unable to open nable to open sstream.
So Please provide any solution for this.
Posted
Updated 9-Jan-19 1:19am
v2

Borland C++ 5 is an ancient compiler, I strongly doubt it supports sstreams.
 
Share this answer
 
Comments
k5054 9-Jan-19 9:49am    
Looks like Borland C++ 5 is of 1997 vintage. I think <sstream> belongs to C++98. Prior to that, it looks like <strstream.h> might be what the OP requires.
If that happens while the execution of your code than you must use the debugger and fix the code.

It will be a bug in your code. So: fix it!!!
 
Share this answer
 
Quote:
While I compile the program in borland c++ I get “Unable to open nable to open sstream.

If you look carefully at compilation report, there is more information which help to locate where is the problem.
It is a good idea to provide such information, file name, position, exact message ...

First thing to do is checking in documentation if sstream is supported.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900