Oluwaseyi
Please what the aim of this Group 'C/C++' I think is for help people who want to learn C/C++
Evgenii
Its aim to discuss c++. But whatever. Group is dead
aleix
@Mester11 spam
Anonymous
Anonymous
Someone can explain how can madvise function works in DirtyCOW exploit?
Anonymous
Friends If any best android karaoke making app, please share with me?
redshift64
Oluwaseyi
Please anybody who can help me with materials on computer security techniques
Oluwaseyi
Anonymous
What do you need?
Oluwaseyi
Study materials on computer security techniques
Evgenii
http://www.gowrikumar.com/c/index.php
Anonymous
Souking
is there any other active groups ?!
Anonymous
Hae techies
@DevPGSV
Anonymous
Anonymous
Anonymous
Yash
Anonymous
Anyone says nothing
Anonymous
Okay
Anonymous
Do questions
Anonymous
I need challenges
Anonymous
And what happens?
Anonymous
We believe in freedom
Anonymous
Sorry, we are Europeans
Tobias
Sorry, we are Europeans
I'm eropean but I'm not sexist and I think post pornography is sexist... and this group is related to C++ so your posts should be removed
Evgenii
@Mester11 can you ban him?
Anonymous
Ozzy
Could you recommend some books or study material for an absolutely beginner, me (who knows nothing about computing but wants to create softwares)?
Evgenii
How is that possible?
for (auto it = vec.begin(); it != vec.end(); ++it) std::cout << "\n" << it - vec.begin() << "\n" << vec.end()- vec.begin() << "\n" << (it != vec.end() )<< "\n" << *it;
Prints 6 6 1 2 and continues loop?
Naveen
What is the number of elements in the vector ?
Naveen
6 ?
Evgenii
At the same time - yes
Evgenii
At least that what vec.size() returns
Naveen
vec.begin() - vec.begin() gives you distance between the iterator
Naveen
So it is giving 6
Evgenii
Naveen
Yes
Naveen
it will never be equal to vec.end()
Naveen
Because your loop terminating with it != vec.end()
Evgenii
Yes
But loop never terminates
Evgenii
It passes it = begin + 6 and continues infinitly
Naveen
Can you paste the code in pastebin and share it here ?
Evgenii
Evgenii
The problem is something "impossible" happens
Naveen
Intead of auto, can you change to const iterator and see ?
Evgenii
Evgenii
But the problem started from std::count on this vector failing with segfault
Naveen
Evgenii
No, something like std::count(vec.begin(), vec.end(), vec.back());
Evgenii
Now something cooler happens
Evgenii
vec.begin() + (vec.end()-vec.begin()) != vec.end()
Marco
Hello world!
Anonymous
Hi
Anonymous
Please can someone suggest a Java, Python, web and graphics design group for me?
Mirko
there are chats on stackoverflow too!
Anonymous
ROCKER 😎
ROCKER 😎:
Guys. Is there any gaming group?
Mirko
gaming group so you want to learn program videogame or?
David
PD: If you know some interesting groups tell me, i'm trying to do a organized list of telegram groups on github
ROCKER 😎
No. Discuss about games
Mirko
can't help you sorry :( . I not like this type group @SNRTHEROCK
Mirko
if you want you can try free game NEXUIZ using notebook (PC GAME)
Mirko
http://www.moddb.com/mods/rexuiz
PVS DurgaPrasad
@snew4
Mirko
This operation need a lot of time (week) search testdisk
Anonymous
Sycon Technology:
Hello
Please I really need your help
My Ubuntu boots to emergency mood
I have tried all possible thing I saw online but none is working. Please what can I do?
Anonymous
Anonymous
Not grub issue but fstab. I have fixed it after spending a whole day on it. Just changing 2 to 0 solved the issue but I can no longer hibernate my system now. It hibernates but is not restored on start up
Evgenii
What is the best way to have float compile-time parameter? As for now, template with numerator and denominator is used
Naveen
Naveen
Sorry, I didn't completely understand.
you want to multiply 2 floats ?
Evgenii
Evgenii
So that it won't be passed as parameter and rather optimized out as compile-time constant
Naveen
Ah ok.
Naveen
Something like
int factorial10 = Factorial<10>::value;