Snsn
my messages get deleted
klimi
let me check
klimi
my messages get deleted
I see just bunch of "Hello" messages, which got deleted
Snsn
lol
Never Spam Bot
Snsn I8.x sent multiple messages that looks like a spam. Why was my message deleted? Spam deleted in this group: 3443
Never Spam Bot
Snsn I8.x is now approved by the group admin and can send messages without any restrictions I'm learning C See spam? Quote the spam message in the group and reply with /spam
Never Spam Bot
Shakir is now approved by the group admin and can send messages without any restrictions Good morning everyone, how can I search for information about C header files, for example, stdio.h, how do I know all the functions I have access to? See spam? Quote the spam message in the group and reply with /spam
Ибраги́м
GitHub - rsashka/memsafe: C++ Memory safety (memsafe) single-header libraries and Clang compiler plugin for safe C++, which reduces errors for reference data types and safe memory management without breaking backward compatibility with old C++ code. https://github.com/rsashka/memsafe
GOPA
hi i found a error in my code and i solved it but i faled to understand why the error was i overloded [] in a class and it worked well outside the class but failed insidethe class i.e if i use this[i] i was unable to write to the data,! fact i was not changing the class itself it was just a wrapper class for another class so operator[] was actually changing the other class,! solution i just removed the inmplemntation to get_data_at(std::size_t) and used get_data_at inside the class and inside operator[] i just returned get_dat_at please help any help will be helpfull THANKS IN ADVANCE FOR YOUR KIND HELP
Ocean
I need a pdf converter for my project..
Online pdf to epub converter?
Rose
User Lionel has 1/2 warnings; be careful! Reason: ad
Hahhh
how const keyword works with data members and member function of a class? Anyone Explain with program..
Pavel
how const keyword works with data members and member function of a class? Anyone Explain with program..
That's not as simple to answer since const is quite an overloaded word in C++. When it comes to members: https://en.cppreference.com/w/cpp/language/cv When it comes to member functions: https://en.cppreference.com/w/cpp/language/member_functions#Member_functions_with_cv-qualifiers Overall with members const makes sure you can't modify the members (but not things they point to, in case of member pointers), and for functions it makes sure you can call the member function only on a const object (or const reference to an object, or via pointer-to-a-const-object)
Never Spam Bot
( ͡ᵔ ͜ʖ ͡ᵔ) sent multiple messages that looks like a spam. Why was my message deleted? Spam deleted in this group: 3463
Iyke
Ok
Never Spam Bot
Prince sent multiple messages that looks like a spam. Why was my message deleted? Spam deleted in this group: 3467
Anywhere
Someone can help me with windows 10 x64 exception handling (low level). Im trying to figure out the windows stack unwinding algorithm
Iván
Any c/c++ certification exam that recommend me?
mito
Any c/c++ certification exam that recommend me?
I don't think a lot of recruiters really care about Certifications especially for C++. I remember my manager initially asking to enroll in a course and asking me to get a certificate, but he immediately backed out of that idea since he realised that there aren't any worthy options..
Rose
User ( ͡ᵔ ͜ʖ ͡ᵔ) has 1/2 warnings; be careful! Reason: offtopic
.
Привет всем, как у вас дела?
.
Есть кто из России?
Roxifλsz 🇱🇹
@neko_code might be russian
.
Почему никто не пишет? Вы куда пропали?
Rose
Привет всем, как у вас дела?
User .​ has 1/2 warnings; be careful! Reason: non-english offtopic
.
/warn
Rose
/warn
You need to be an admin to do this.
klimi
?
Read the rules
.
Read the rules
Нельзя писать на русском?
Dima
@neko_code might be russian
Olen kotoisin suomesta
.
English
Okay, I got it
.
Olen kotoisin suomesta
Dmitry, are you a programmer? I have a few questions for you.
ملهــم | Molham
I have a project, and I want to design a Use Case for it. I would appreciate your opinions, please. Project Idea: It’s a System for Managing Organizations, including management of: Customers Suppliers Invoices Expenses Inventory Products, etc. Main Actor: The Admin (for example, the store owner). Admin Permissions: Login. Enter company details. Add customers, suppliers, inventory, products, invoices, etc. Access settings to create new Roles and define their permissions. Can add multiple Roles. Add new Users like cashier, accountant, data entry, etc., and associate them with specific Roles. Send invitations to users via email. The problem in defining Actors in the Use Case: Admin is clear as the primary Actor. But what about the new Users? The Admin can create multiple Roles, and each User gets different permissions based on their role. If we add each User with their permissions in the Use Case, it will become too large. Question: How can we structure the Actors in the Use Case in a way that is clear and organized without becoming too complicated? Looking forward to your opinions and experiences!
Abid
Anybody into webdevelopment
Naggafin
Anybody into webdevelopment
yes. I do back end web applications development in Django
Abid
Really im bigginner just started a few days ago . Learning HTML, CSS AND JAVASCRIPT BRO
Abid
If you wana i can show you
Abid
Hit me up for more informations
Rose
Hit me up for more informations
Reported Nusrut [1338333084] to admins.​​​​​​​​​​
harmony5 🇺🇳 ⌤
Rose
Hit me up for more informations
Offtopic discussions should be done in the C/C++ Offtopic group. Please take your discussion/questions there.
Abid
Ok got it
klimi
Really im bigginner just started a few days ago . Learning HTML, CSS AND JAVASCRIPT BRO
as a first step i recommend you learning how to read english
klimi
From which country
it doesn't matter but american English is more spread
( ͡ᵔ ͜ʖ ͡ᵔ)
( ͡ᵔ ͜ʖ ͡ᵔ)
Are their any specific certification program i can do at school level ?
( ͡ᵔ ͜ʖ ͡ᵔ)
Will it be beneficial?
Abid
as a first step i recommend you learning how to read english
Didn't catch Could you come clean dear
klimi
Didn't catch Could you come clean dear
You could start by learning English and reading the group rules
Craz
Hey guys, do u know normal git repo for converting headers file .h to json ?
Skarn
Hey guys, do u know normal git repo for converting headers file .h to json ?
С++ is impossible to parse as just text without going back and forth to the compilation context.
Skarn
For C headers there are many parsers available. I have personally used one written in Python using the Lark library
Never Spam Bot
User is now approved by the group admin and can send messages without any restrictions Can u send me link ? Like parser which ll save #if statements etc See spam? Quote the spam message in the group and reply with /spam
Stark
Pop
Ujjawal
#include <iostream> int f(int()){ return int(); } int main(){ std::cout<<f([](){ return 45; })<<std::endl; return 0; }
Ludovic 'Archivist'
here, the parameter of f() is a function?
https://hackingcpp.com/cpp/lang/lambda_basics.html
Ludovic 'Archivist'
here, the parameter of f() is a function?
https://www.youtube.com/watch?v=IgNUBw3vcO4
Ludovic 'Archivist'
can someone please explain to me what this code is?
Look at the two links above your message
.
Look at the two links above your message
Are you a teacher of the C++ programming language?
.
Yes
should I teach the C++ programming language?
Ludovic 'Archivist'
That is for you to decide
.
That is for you to decide
Please excuse me for the translation error. I'm actually from Russia. I'm communicating with you through a translator.
.
should I teach the C++ programming language?
I want you to teach me the C++ programming language.
Ludovic 'Archivist'
Ludovic 'Archivist'
Unless you speak either French, Spanish or English I cannot teach you
Ujjawal
can someone please explain to me what this code is?
f(int()) is a function that takes an int() as it's parameter and returns an int object, main() is also a function that calls f(int()), we are passing a lambda expression as a function argument to the f(int()) and main() returns 0
Nikodem
Hello I need a developer to decompiled and reconstruct and old dmb file