Anonymous
Dima
Anonymous
Full acknowledgement -> delete dev c++ and install vs
Dima
yeah
Dima
install linux and install clion or something
Anonymous
if he is on windows, then visual studio ist the best choice he can make. vs handles very much for a beginner and profesionals love the simplicity of the UI
Dev
https://ideone.com/Ll2yDr
Dev
I am getting memory limit exceed can anyone tell me y?
Dima
Badugar
Dev
Mat
Dev
Should I share problem statement?
Dev
No
Dev
https://codeforces.com/problemset/problem/318/A
Mat
So you don't need it
Mat
You have to reduce memory usage. That means you need to use less variables. Find a way to kill that vector using a procedure that doesn't require it
Dev
Can you tell me why I m getting memory error In two loop and not in one loop?
Dev
Nassrullah
Hello everyone ! I want to use C++ for web dev. Would you recommand me cgi or Wt ?
Parra
https://multun.net/obscure-c-features.html
Parra
I didn't know some of them
Parra
although some are presented as obscure as possible, like compound qualifiers
scammer.xyz
memcpy(array1, array2, sizeof &array2);
scammer.xyz
array1 = {1, 2, 3};
array2 = {2, 3, 4};
Laxmikant
How to start learn programming language
Anonymous
india?
Anonymous
Hi my all programmer friend
Dima
Jussi
/report
Koulick Sadhu
Can anyone please help in solving this problem- https://codeforces.com/problemset/problem/1186/D
Mat
Anonymous
PLZ HELP
Dima
Anonymous
I am unable to find the output
Anonymous
Anonymous
Anonymous
Question is to find the sum of marks
Pie 🧩
Koulick Sadhu
Lol it seems as if you posted a dark net link
MᏫᎻᎯᎷᎷᎬᎠ
Welcome
Anonymous
Any v c# expert
Anonymous
I know ..just asked
Anonymous
Hi!
Dima
Welcome!
Anonymous
I am not that much familiar with Telegram and I found this group via Google. Never thought something like this exists. I mean 8k members is a lot for a programming channel.
Dima
Most of these are quiet
Dima
there’s python group with +35k
Anonymous
Woah!
cpp
void f(const int & t_x)
Fun fact: I recently learned that you can pass rvalues to a const ref b/c it was specified so. Prior to that I assumed that you can't have rvalues as arguments, since a reference is basically a pointer in disguise.
Anonymous
(Oh there is no syntax highlighting...)
Anonymous
If you ask why it made no sense to me?:
void f(const int & t_x)
would be equivalent to
void f(const int * t_x)
So you can't pass in rvalues like this f(42), but the C++ lords made it so that you can if it is a const ref.
Ибраги́м
Serenity: Graphical x86 operating system written entirely in C++
https://github.com/SerenityOS/serenity
https://redd.it/cuewda
@r_cpp
Anonymous
rust or go lang:
Himanshu
Does anyone has any idea how to make deep learning model with darknet?
academickarl
Dima
Himanshu
What happened? Why the warning?
Dima
wait
Dima
I read it wrong, sorry, but it’s ot anyways
Dima
go to
Dima
#ot
Ritu Raj
Hello Guys!
Dima
Hey!
Ritu Raj
In C/C++ header files contain only declaration. So where does it's definition is stored?
Dima
In cxx files
Ritu Raj
I have googled it already.... But still didn't get answer
Dima
you can do inline but the definition is in cxx (implementation) files
Anonymous
Anonymous
Actually it doesn't matter
Anonymous
It is just a convention
Dima
By the way, my question: why it’s so cool (some people think that way at least) to store everything in header files? Due to it’s lightweightness?
Ritu Raj
Does it mean there is another C/C++ file where it has definition???
Ritu Raj
Known as implementation file?