Anonymous
It is clearly saying it is not able to find the path
Neutronix
I tried 2 different ones
Anonymous
It's not about ide
Anonymous
Your code had errors
I_Interface
Anonymous
People suggested better ide to help you find the error
Anonymous
By the way, open project settings
Neutronix
But they are officials libraries
Neutronix
Anonymous
C/c++ options
Anonymous
And then additional include directories
Anonymous
And check if you have included them
Anonymous
Your code means your code has error not the library
Neutronix
Anonymous
It is saying could not find file
Anonymous
Means #include was not resolved
Anonymous
I told you, there is no magic,
Anonymous
#includes have to be resolved to some path, and default path has to be told to the compiler
Anonymous
It can't know anything automatically
Anonymous
You need to provide the folder name
Anonymous
Inside includes you will have it
Neutronix
Anonymous
Is it a dll or lib
Anonymous
What to do, you can expect anything
Decoder_3d
Looks like it is lib
Anonymous
Good to know
Anonymous
🤣
Decoder_3d
xD
Neutronix
And I Don't know if I've it by default in the compiler
Anonymous
Is there a ooenssl folder
Anonymous
Inside that you will ahve ssl.h
Anonymous
Otherwise open ssl git repository and get the include directory front heir
Anonymous
There
Anonymous
But I am sure ooenssl comes with the include directories
Neutronix
Probably I'm wrong I know
Anonymous
How did you download open ssl
Anonymous
Did you download openssl
Aym
guys can we sort vectors elements without iterators?
Aym
simply using for loop? instead of iterators?
joel
wait what
joel
there's no for loop without an iterator
Aym
Aym
std::iterator
Anonymous
It's the same thing
Anonymous
std::sort(v.begin(), v.end())
joel
joel
only some answers are
Anonymous
Aym
So ?
it's working.. thanks
Aym
Dima
Lol devcpp
Anonymous
So what was the question?
Anonymous
Aym
i was just wondering if it wouldnt..😅😅
actually that time i was directly printing cout«sort(vec.begin(),vec.end());
Anonymous
Anonymous
std::sort returns nothing
Anonymous
You can't print nothing
Aym
Aym
Anonymous
It sorts elements of given sequence
Aym
Anonymous
Aym
Aym
like any series of input from std or anywhere?
Neutronix
Did you download openssl
I downloaded openssl etc and now I need to link with the exactly path every single include also inside the SSL libraries, I'm crazy now, there's another way to make things work?
Anonymous
Now scroll back and read every single conversations
Anonymous
any sequence??
Yes, if given iterators of a sequence meet some requirements