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
Neutronix
Your code had errors
The error is inside the libraries
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
Neutronix
Means #include was not resolved
Inside the libraries I don't have this file with that name
Anonymous
You need to provide the folder name
Anonymous
Inside includes you will have it
Neutronix
Inside includes you will have it
Ok I'll check again
Anonymous
Is it a dll or lib
Dima
Is it a dll or lib
Lol that question
Anonymous
What to do, you can expect anything
Decoder_3d
Looks like it is lib
Anonymous
Good to know
Anonymous
🤣
Decoder_3d
xD
Neutronix
Inside includes you will have it
Ok, inside the libraries I don't have anything called ssl.h or openssl
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
Is there a ooenssl folder
Where I can found it? In the folders of visual studio?
Neutronix
Probably I'm wrong I know
Anonymous
How did you download open ssl
Anonymous
Did you download openssl
Neutronix
Did you download openssl
No, I need to download it? Sorry I didn't understand
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
there's no for loop without an iterator
i mean Iterator from Algorithm library
Aym
std::iterator
Anonymous
It's the same thing
Aym
It's the same thing
😐 thanks .. it was a stupid question ig
Anonymous
std::sort(v.begin(), v.end())
joel
only some answers are
Aym
std::sort(v.begin(), v.end())
yeah.. done.. i did the same
Aym
So ?
it's working.. thanks
Aym
Dima
Lol devcpp
Anonymous
So what was the question?
Anonymous
My eyes are bleeding
Aym
i was just wondering if it wouldnt..😅😅 actually that time i was directly printing cout«sort(vec.begin(),vec.end());
Aym
My eyes are bleeding
😢😢 same.. which idle do you use?
Anonymous
😢😢 same.. which idle do you use?
Qt Creator, Visual Studio, CLion
Anonymous
😢😢 same.. which idle do you use?
But my eyes are bleeding because of your code, especially the indentation
Anonymous
std::sort returns nothing
Anonymous
You can't print nothing
Aym
std::sort returns nothing
yeah now i get it.. it just sort values stored in Vector
Anonymous
yeah now i get it.. it just sort values stored in Vector
It sorts not values of std::vector, it doesn't know anything about vector.
Anonymous
It sorts elements of given sequence
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