Shadow
Byterithm
Whats
If you´re referring to dynamic memory, then it's not necessary to manage it to create scripts. But if I'm mistaken, the stack is still limited to just a few MB
Ziky
Roxifλsz 🇱🇹
No, nobody in here writes any code
Roxifλsz 🇱🇹
It's just a group of 18k people who think the C logo is cool, I think
Pavel
https://medium.com/@gameraccoon/how-to-ask-questions-that-dont-discourage-people-from-answering-d5adc2cdf3de
Dan
Hi, guys would you give me a guide on how to structure my folder for building my own game engine using c++,
Dan
Pavel
Hi, guys would you give me a guide on how to structure my folder for building my own game engine using c++,
There's no one best way, but two things that helped me:
- an obvious one, separate things that you want to share between different games from the things specific to one game (e.g. logic for specific enemies should probably not go to the shared/engine code, whether logging should probably go to shared code).
- another thing that was really helpful to me is separate both the game and the engine into a few smaller modules based on levels of abstraction, and have them in separate static libraries (it is super easy to set up with Cmake). This way the code won't build if you try to refer to something of higher level that the current module. E.g. if I try to refer to my networking code from my logging code I won't be able to build it.
Also use one code style everywhere if possible. But don't bother with clang format until you feel you really need it (wastes a lot of time to set it up properly).
PKA 👾
aaswq1
nometa.xyz
Dan
Rose
User Ninja has 1/2 warnings; be careful!
Reason:
no hello
Rose
User Dr has 1/2 warnings; be careful!
Reason:
spam/ot
Rose
User Ravi has 1/2 warnings; be careful!
Reason:
ad
Never Spam Bot
Ema Carpentier sent multiple messages that looks like a spam.
Why was my message deleted?
Spam deleted in this group: 3350
Never Spam Bot
Ninja sent multiple messages that looks like a spam.
Why was my message deleted?
Spam deleted in this group: 3354
honored
Pls suggest me a good course ,playlist ot materials to complete DSA in c++
Coding
Coding
Admin deleted my message
Souradip
Ибраги́м
Template Assembler — UWTB
https://blog.mattbierner.com/stupid-template-tricks-template-assembler/
Byterithm
GOPA
Can anyone guide me to write a custom allocator
Coding
Рчти
Hello everyone
I have project fpga xc7z020 connection with max2769 and I want to build code can anybody help me send my massage to discussing
harmony5 🇺🇳 ⌤
Rose
Hello everyone
I have project fpga xc7z020 connection with max2769 and I want to build code can anybody help me send my massage to discussing
Don't ask meta questions. In other words, don't ask to ask. Questions like "Does anyone know XYZ?", "Has anyone used XYZ?" or "Can someone help me?" are all considered meta questions because they don't specify what your actual problem is.
These questions give the impression that you want people to approach you and offer their help as if they don't have any other work to do. Now doesn't that expectation make you look like an idiot?
If you have a question ask it directly. You are more likely to get a response that way.
Рчти
Ujjawal
retarded bot
Never Spam Bot
Ujjawal Gupta is now approved by the group admin and can send messages without any restrictions
somebody approve me please 😌
See spam? Quote the spam message in the group and reply with /spam
Rose
User ishita has 1/2 warnings; be careful!
Reason:
ad
Hudu
Admin there's Human Virus in here
klimi
Rose
User Riya has 1/2 warnings; be careful!
Reason:
no-hello
Chaudhary
Need help for c code on vs code
Rose
That's 2/2 warnings; Rajiv is banned!
Reasons:
1: ad
2: ad
klimi
Rose
Need help for c code on vs code
Don't ask meta questions. In other words, don't ask to ask. Questions like "Does anyone know XYZ?", "Has anyone used XYZ?" or "Can someone help me?" are all considered meta questions because they don't specify what your actual problem is.
These questions give the impression that you want people to approach you and offer their help as if they don't have any other work to do. Now doesn't that expectation make you look like an idiot?
If you have a question ask it directly. You are more likely to get a response that way.
Chaudhary
#meta
Thanks for concer... I have resolved the problem
klimi
Рчти
Hi everyone need help I have pcb board with fpga xc7z020 connections to Ics max2769 one is gps and the second is glones spi and i want to build code source with vhdl , I would be grateful for your help
klimi
Rose
Offtopic discussions should be done in the C/C++ Offtopic group. Please take your discussion/questions there.
Rose
That's 2/2 warnings; DIMITRY is banned!
Reasons:
1: multiple ad, R18 content, spam
2: ad
Never Spam Bot
Tamzil Hasan sent multiple messages that looks like a spam.
Why was my message deleted?
Spam deleted in this group: 3406
Jay
Get me the whole pdf of c and c++ language in simple language
Maxim
klimi
Rose
Rose
User R has 1/2 warnings; be careful!
Reason:
ad
Hudu
/warn
Rose
/warn
You need to be an admin to do this.
Rose
Reported exoooooo [5957186201] to admins.
Rose
Reported exoooooo [5957186201] to admins.
exo
top 3 report lmao
Cindy
Hey guys pls, who can help me with a video how to install MySQL app
Rose
Another one bites the dust...!
Banned Cats.
Reason:
cryptobot
B
Snsn
...
Snsn
is someone there
harmony5 🇺🇳 ⌤
Rose
is someone there
Don't ask meta questions. In other words, don't ask to ask. Questions like "Does anyone know XYZ?", "Has anyone used XYZ?" or "Can someone help me?" are all considered meta questions because they don't specify what your actual problem is.
These questions give the impression that you want people to approach you and offer their help as if they don't have any other work to do. Now doesn't that expectation make you look like an idiot?
If you have a question ask it directly. You are more likely to get a response that way.
Snsn
I need help
Snsn
why are my messages getting deleted
Haystack global company service
I need a pdf converter for my project..
klimi
Сергей
Hi. Is there anyone who can recommend literature on the study of C++? for self-study from 0?
Never Spam Bot
R S sent multiple messages that looks like a spam.
Why was my message deleted?
Spam deleted in this group: 3436
Ujjawal
are data members stored in class scope or in object?
Chat Boss
Chaudhary sent a code, it has been re-uploaded as a quote
class Solution {
public:
string uncommonChars(string& s1, string& s2) {
// code here
set <char> set1(s1.begin(), s1.end());
set <char> set2(s2.begin(), s2.end());
set <char> unique;
for(char ch : set1){
if(set2.find(ch)==set2.end()){
unique.insert(ch);
}
}
for(char ch : set2){
if(set1.find(ch)==set1.end()){
unique.insert(ch);
}
}
string res(unique.begin(),unique.end());
return res;
}
};
i am not understanding if condition . can any one explaini t to me.
klimi
What you don't understand?