Anshul
👍
The
can you share some article/post? I have tried out with gpt but it mostly is of no help
Its fairly basic understanding.. so no links.. but maths wise it's out of my scope right now.. too tired
Anshul
Its fairly basic understanding.. so no links.. but maths wise it's out of my scope right now.. too tired
i understand that we are converting it to base 27 integer so that we could uniquely represent each string as int. But i couldn't think of a mathematical proof before. Got it now thanks.
Black
Ok I have a question ... The maximum number of characters that can be represented in extended ASCII is 256 . But the ASCII table has 128 characters, with values from 0 through 127 . So what are the values of rest 128 characters that are on the negative side ?
Danya🔥
They are used by other encodings to be backwards compatible with ASCII yet add new symbols
\Device\NUL
For example, Why -1 with UINT64_MAX is same? Cuz they have same bits
Black
Can you send me the exact table of ASCII with 256 representation
\Device\NUL
Can you send me the exact table of ASCII with 256 representation
https://en.wikipedia.org/wiki/Extended_ASCII
Y
Does writing a virus program in C++ not require a destructor to make the program automatically crash? ChatGPT I can't provide help or advice on writing malware or virus programs. Writing, distributing or using malware is illegal and unethical. I encourage you to only use the programming knowledge you learn to create socially beneficial, legal applications. If you have any other questions about legal programming issues, I'll be happy to help.
zahra
Install and Debug C/C++ in WSL via Visual Studio Code | Windows Subsystem for Linux and then error launch:program 'enter program name,....does not exit what should i do?
Y
To what extent do you need to learn the C++iostream library before you can start making ue5 games?
Y
I heard at a game hacker talk two months ago that C++ is the most suitable language for making game hackers among all game hacker making languages.
Y
Never touch chatgpt again.. it's like getting into a F35 copy without knowing how to drive a bicycle
But when I don’t know how to improve the program and I can’t understand some of the knowledge in the book, I ask, I don’t know what to do.
⏤͟͟͞͞⛦⃕͜
Done ✅
Light
Yeah, chatgpt gives such trash answers to physics and math a nd chem questions
Edward
That's truth
Edward
He can't even go through list of args passing them to a formula and calculate it right
Never Spam Bot
@tajslm sent multiple messages that looks like a spam. If they send more spam - like messages, they will be muted. Only admins can unmute them.
Sj
hii
Sj
how can i learn problem solving
Sj
in c ?
Максим
Sj M solve more problems)
Sj
from where?
Максим
Sj M Come up with pet projects, try to get an internship in a real company. There is only one option: write more code, fix more bugs. They couldn't think of anything else. Learn syntax and algorithms using leetcode and similar resources.
Максим
By the way, look at the repositories on Github, which are written in C. There, often in open source projects there are tasks and problems that you can help solve.
Sj
Thanks for your help
Максим
U r welcome)
Ludovic 'Archivist'
To what extent do you need to learn the C++iostream library before you can start making ue5 games?
You need 0 knowledge of iostreams for UE, but some knowledge of libc formatting will help
Ludovic 'Archivist'
I heard at a game hacker talk two months ago that C++ is the most suitable language for making game hackers among all game hacker making languages.
Learn how the OS works and be confident in programming in a few language before flailing around with any meaningful hacking around
Manav
To what extent do you need to learn the C++iostream library before you can start making ue5 games?
0, UE has it's own string container. FString is what you'll normally be using. https://docs.unrealengine.com/5.3/en-US/fstring-in-unreal-engine/ Refs: https://docs.unrealengine.com/5.0/en-US/API/Runtime/Core/Containers/FString https://docs.unrealengine.com/5.3/en-US/API/Runtime/Core/Internationalization/FText
Anonymous
Any ideas for c langauge project?
Check out the resources sections for this group. There is a link to "How to build your own X" organized as simple step by step tutorials. You can use that as a starting point
Rose
User Ridhi has 1/2 warnings; be careful! Reason: ad after join
Anonymous
Hi
zahra
Has anyone worked with the cgal library?
zahra
Hello friends, I wanted to implement the skeleton code in three dimensions with the cgal library, and the error I received is, can anyone guide me? "message": "namespace \"CGAL\" has no member \"extract_mean_curvature_flow_skeleton\"", "source": "C/C++",
zahra
How can I run this code? https://github.com/CGAL/cgal/tree/master/Surface_mesh_skeletonization/examples
Ziky
How can I run this code? https://github.com/CGAL/cgal/tree/master/Surface_mesh_skeletonization/examples
In the root of repo is readme.md where I see Getting Started with CGAL section...
Hasna
If #define doesnt have type checking, why do people still used it instead of const ?
Anonymous
If #define doesnt have type checking, why do people still used it instead of const ?
Using #define to declare a constant is a bad practice and is discouraged. Using preprocessing macros is in general not encouraged either but in a language like C, macros offer benefits that can't be achieved easily using the non preprocessing constructs. For ex, macros are used to simulate overloading of functions in C (_Generic is a relatively new option which again uses preprocessing macros underneath). So people use them for such purposes and the ones who use it are the ones who generally understand the dark corners of the language well In C++ too there are limited use cases for macros (most of which can be handled through the build system) with limited checking of #defines in your code.
Chauhan
Does anybody have a solid principle explanation document or any resources in C++??
Anonymous
Does anybody have a solid principle explanation document or any resources in C++??
When you say "solid principle", do you mean a solid explanation of the programming principles and concepts in C++ or do you mean explanation of SOLID principles using C++?
Elnee
Hi all. Don't understand boost library reference statements about throwing exceptions. For example the boost::json::parse() function reference has the section "Exception Safety" and it says "Strong guarantee". Strong guarantee of what? Of safety? So it doesn't throw? But it also says that some internal calls may throw. It really blows my mind.
Elnee
https://en.m.wikipedia.org/wiki/Exception_safety
Thank you! I've read the article. So in case of Exception Safety: Strong guarantee it means that this function should not rethrow any exceptions? Did I get it right?
Moazam
Can anyone tell me psuedo code of this time complexity 3n'2 +5n+ 3
Moazam
?
Moazam
Please!
Danya🔥
Can anyone tell me psuedo code of this time complexity 3n'2 +5n+ 3
O(3n² +5n+ 3) = O(n²) = any quadratic algorithm, like bubble sort
aklil
Can anyone tell me psuedo code of this time complexity 3n'2 +5n+ 3
for(i=0 <3) for(j=0 <n) for(k=0 <n) for(i=0 <5) for(j=0 <n) *3 arbitrary constant expr*
Moazam
Thanku so much...
Anonymous
Hello, I'm new to C.
Anonymous
Is there a PDF?
вадим
Is there a PDF?
Check the pinned message please.
Anushka
Can anyone say why is inline function used for?
Anushka
I want to write it in my theroy exam so
Anushka
i want to learn C++ from scratch, are there any resources available here?
I followed the code with Harry course u can try freecodingcamp
JAYE~ONE
Hello, am new c here!!!
klimi
Hello, am new c here!!!
then use your one braincell to read the rules
Ортонормированная
I have encountered such behavior that a segfault occurs every few launches due to the fact that signal_handler makes a stack munmap, and the thread does not have time to die How would it be nice to fix it? https://gitlab.com/stepan-neretin7/tfasd
Rose
Purge complete.
𝖳𝗁𝖾 𝖠𝗅𝗀𝗈𝗋𝗂𝗍𝗁𝗆 𝖭𝗂𝗇𝗃𝖺 ⚪♛
Anyone who can do a project?
.
Hello everyone
.
I’m glad to join here
.
I was wondering if anyone can help me know where I can find any hacker groups to join?
Akash
Hi guys, i just join my uni and I'm searching for good youtube tutorial to learn c language. Can anyone send me? I have cheaked the resources in pinned message but I need youtube tutorial explaination in simple way bcz my english is not that advance.