Moh
Hello my friends. I need a channel on the telegram containing books and references to study the programming
Anonymous
Hi everyone,,i have borland c++ builder installed on my laptop, but that was cracked, i use keygen generator, its ok ?
Coz actually thats illegal, but according to someone that i ask, thats ok, because borland c++ builder not develop anymore, so we can use that free
Can someone explain to me ?
Anonymous
Thank you
Mat
If you have to pay to use it, using it without paying for it is illegal
Mat
If it becames free, you should install it again
Anonymous
https://github.com/themester/gomelee
Anonymous
Hello Everyone
Isc
hey
Isc
I assumed that we are talking about modern c++
Isc
Yes, it's just your opinion, not the reality 😂
Isc
Modern C++ adds tons of features that make it blazing fast, memory safe, etc
Isc
Currently I cant imagine a world without move semantics etc
Isc
Compilers are smarter with things like noexcept, const, etc
Isc
So the resulting compiled code has better quality
Isc
And it's faster too
Isc
rvalue semantics
Isc
std::move, forward etc
Isc
This bunch of possibilitied
Isc
They do different things
Isc
https://www.cprogramming.com/c++11/rvalue-references-and-move-semantics-in-c++11.html
utq he
joied.. joined... joined...
utq he
andddd
utq he
leaved
Anonymous
We have currently start a open source project for c/c++ developer.
Rokas Urbelis:
For repo access contact Mester ( @themester )
Anonymous
Hey people
Anonymous
Hello,
Anonymous
Roxifλsz 🇱🇹
Musyoki
Roxifλsz 🇱🇹
Tbh you could have just compiled the code yourself and see what it does
correctmaninwrongplace
Anonymous
Anonymous
Now my question is : where the increment operation has been exectued ? At b=a++ or cout«++b ?
J
Willy
im pretty sure that in b=a++; first executes the statement (b=a), and then it makes a++
Willy
and the other way in the next line
J
J
which mean 4
J
when it print the b
J
the increment is b not, a
J
so, ++b is 4
J
because b contain 3
J
cmiiw, thanks
Anonymous
because b contain 3
Are you sure ? Because as you said, b contain a++ which is already 4. How can it be 3 after that ?
Anonymous
We should take a look at the disambly.
Anonymous
Willy
Willy
Willy
I think that confirms it, right?
Anonymous
Anonymous
kek
Anonymous
hai
Anonymous
@Diablillowilly what app are u using please
many
By using fork(), we have child process. How about thread() and pthread()? Do we have child processes for these two functions?
many
Is fork() equivalent to pthread() and thread()?
Dioxidanyl
Process and thread is completely different
Willy
Jadu
/admins
many
Currently playing with cppcms, a c++ framework for web application. Wondering if it's faster than other servers like Apache+php, Java-related servers etc
Anonymous
Hey guys.
Can anyone one show me how string name can I insert
Roxifλsz 🇱🇹
Anonymous
Wts the answer
I=99;
While (99)
{
Printf("hello");
}
I++;
Anonymous
How many time prints "hello"
Evgenii
infinite
Anonymous
Anonymous
Plz explain it
Anonymous
Also, you don't decrement it.
T21
Hey guys
deltanicola
It could also be
Int i=99;
While (i==99)
{
Printf("hello");
i++;
}
deltanicola
The i++ or i-- needs to be inside the cycle
Evgenii
Evgenii
deltanicola
deltanicola
It doesn't assign 99