Sheezan
Follow sheezCode on YouTube
Suresh
Thanks
(null)
i mean for ex i have a class Student and Subject how to call the subject into student is it possible ?
What do you mean by calling Subject? Calling its ctor? You can construct an instance of Subject inside of Student... it becomes an attribute of the Student. If you already have an instance in some scope, you can pass the reference of that Subject to Student. (ofc you need to have a ctor for that or a setter or sth)
Rose
Follow sheezCode on YouTube
User Sheezan has 1/2 warnings; be careful! Reason: ad
subham
cohort 3.0 course ki lectures chaiye can anyone help me please
Sameer
C language from starting
(null)
C language from starting
Start from the end. It's more exciting.
Salaa
Hellow Programmer. I hope I have fallen into the best site. So I got a question here, which data structure should I start with in C.
(null)
Hellow Programmer. I hope I have fallen into the best site. So I got a question here, which data structure should I start with in C.
Most tutorials and books start with linked lists because it provides a good foundation for understanding later data structures like trees and hash tables. If you haven't encountered any data structures before and have no idea about them, Grokking Algorithms is a nice book to start with for beginners.
Salaa
Isn't it better to start with dynamic arrays rather than ll
I'm thinking of starting with arrays. Then others.
(null)
I'm thinking of starting with arrays. Then others.
Stop thinking. Just start doing it. If you had started when you sent your first message, both of them would be done by now.
Salaa
Stop thinking. Just start doing it. If you had started when you sent your first message, both of them would be done by now.
Done with basics of 1-D, Multi- Dimensional Arrays & static. Though I can see that it's wide.
Harsh
I need the notes of 1-D and 2- arrays can you give me please.
Rajiya
/notes
Rose
/notes
List of notes in C/C++ Programming: - 0_to_show_item_use"#item" - gitgud - howtoask - markdown - mcve - meta - ot - paste - projects - res You can retrieve these notes by using /get notename, or #notename
Rajiya
Ic notes maam plz
Salaa
#projects
Rose
#projects
Please check the Resources section for links on Open Source Projects in C/C++ some of which are explained from scratch.
Ray【レイトレーサル】Tracer
I tried it, but backtracked because modules support is still spotty, in particular, the standard library has basically negative support at this point. I will try again when support gets better
I tried it and got it working with clang, but for some reason my lsp was not able to reflect it. I thought since it was introduced with C++20 the support might be good now, compared to 5 yrs back, especially when C++26 is just around the corner now.
Rose
User lingling has 1/2 warnings; be careful! Reason: offtopic
Rose
User Michael has 1/2 warnings; be careful! Reason: ad
Muu_demon_lx
Hello
Muu_demon_lx
Any one there
Salaa
Start with Basics.
Muu_demon_lx
Ok
Muu_demon_lx
I know basics
Muu_demon_lx
Start with Basics.
But how to puts codes for different types of problems
Salaa
I know basics
Then start with relevant data structures, like arrays etc. Though am a beginner too.
Muu_demon_lx
Ok
Madhav
#projects
Rose
User Adarsh has 1/2 warnings; be careful! Reason: non english
Adarsh
Ok
Adarsh
I want python and Java syllabus
Adarsh
Of this year
klimi
you are in wrong group, please stop breaking all the rules or you will be removed
🍅
Please mam give the c language MCQ test
Havoc
bool addBorrower(Borrower borrower) { if (currentBorrowerCount < BORROWER_CAPACITY) { borrowers[currentBorrowerCount] = borrower; ... this is a method in my object class, I can't use = because the compiler is deleting the operator, what's the correct implementation of deep copy here?
Arun
Hi
Havoc
tf
Havoc
ban this guy rn
AmR
I try use boost.process but I got "error: 'STARTUPINFOEXW' does not name a type; did you mean 'STARTUPINFOW'? STARTUPINFOEXW startup_info{{sizeof(STARTUPINFOEXW), nullptr, nullptr, nullptr, ^~~~~~~~~~~~~~ STARTUPINFOW" how I can fix that ?
GOD_EMPEROR
Hello.. everyone Greetings My laptop is stuck on Dell logo I assume it's bios got corrupted or it hanged How can I reflash it? It's very old 2nd gen I use it as a spare linux device Please Assist me to fix it annyone if possible Sorry if the grp consider this as off-topic
Rouge!
Hi all. I am above average with Python and the world of data. I need some help with C, especially some windows program. If anyone here can help me, it would be very helpful.
Rose
Hi all. I am above average with Python and the world of data. I need some help with C, especially some windows program. If anyone here can help me, it would be very helpful.
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.
Havoc
even if I copy everything in the array, it still doesn't allow me to use the = operator
Rouge!
Whoever designed R O S, lacks basic etiquettes. Please be respectful to everyone.
(null)
even if I copy everything in the array, it still doesn't allow me to use the = operator
That's the whole idea... by overloading it you're making the Borrower assignable. There are specific reasons why the default assignment operator is deleted (I mentioned only one of them), which necessitates overloading it. If you need more help, feel free to share your code (or the parts that matter) on godbolt.org and drop the link here.
Rose
List of notes in C/C++ Programming: - 0_to_show_item_use"#item" - gitgud - howtoask - markdown - mcve - meta - ot - paste - projects - res You can retrieve these notes by using /get notename, or #notename
Devin
do you prefer to use libtorch(pytorch) in c++ rather than in python?
Gacha
/C
Shady
#gitgud
Rose
#gitgud
Becoming a pro in C++ requires practice, dedication, and a willingness to learn new things. Here are some steps you can take to improve your C++ skills: Read C++ books: One of the best ways to improve your C++ skills is to read books written by experts in the field. Some recommended books include "C++ Primer" by Stanley Lippman, Josée Lajoie, and Barbara E. Moo (updated for C++11), and "Programming: Principles and Practice Using C++" by Bjarne Stroustrup (2nd Edition - May 25, 2014, updated for C++11/C++14). These books provide a comprehensive introduction to C++ that covers just about everything in the language in great detail. Practice coding: The best way to improve your C++ skills is to write code. Start by solving small problems and gradually move to more complex ones. You can practice on online platforms like LeetCode, HackerRank, and Codeforces, which provide a range of problems of varying difficulty. Try to write clean, well-structured code that follows best practices like commenting, naming conventions, and avoiding global variables. Read documentation: There are many libraries and frameworks available for C++, and reading their documentation can help you gain a deeper understanding of how they work. For example, you can read the C++ standard library documentation or the Boost C++ libraries documentation. Participate in online communities: Join online forums and communities where C++ programmers gather to share knowledge and ask for help. This will allow you to learn from others and get feedback on your code. For example, you can join the C++ community on Reddit or the C++ Slack community. Build projects: Try building some projects on your own, such as a game or a utility program. This will give you an opportunity to apply your C++ skills in a practical setting and help you learn new things. Start with a small project, and then gradually move to more complex ones. For example, you can build a text-based adventure game or a calculator app using C++. Watch C++ conferences: Attend or watch C++ conferences like CppCon, ACCU, and Meeting C++ where experts in the field share their experiences, ideas, and best practices. These conferences provide a great opportunity to learn about new features, techniques, and tools in C++, as well as network with other C++ developers. You can watch the recordings of past conferences on the conference websites or YouTube channels. Learn from your mistakes: As you write code, you will undoubtedly make mistakes. Don't be discouraged by them; instead, learn from them and try to avoid making the same mistakes in the future. Use debugging tools like gdb, valgrind, or lldb to identify and fix errors in your code. You can also seek feedback from other programmers and learn from their code reviews.
Rose
Please check out this channel - @Resources for information on learning sources for C and C++ (books and videos) and Frequently Asked Questions.
Rose
User Lee Ace has 1/2 warnings; be careful! Reason: spam
Rose
User Vishnu has 1/2 warnings; be careful! Reason: non english
Rose
User Rohit has 1/2 warnings; be careful! Reason: non english
Aravindh
/get projects
Rose
/get projects
Please check the Resources section for links on Open Source Projects in C/C++ some of which are explained from scratch.
Jovan
/get
Rose
/get
Not enough arguments!
klimi
Sir, this is not Google
Pythongames
#projects
Rose
#projects
Please check the Resources section for links on Open Source Projects in C/C++ some of which are explained from scratch.
Pythongames
Thank u many
Ziky
why don't you write that into your favourite search engine?
Chat Boss
ㅤs Verma sent a huge message, it has been re-uploaded as a file
Rishu
Okay
Ray【レイトレーサル】Tracer
What is mutual enjoyment ?