Anonymous
Anonymous
It has loads of examples
Do you know any website or video that help me to learn it because I am just a beginner in C++
Robin
Robin
Even I am going to complete c+(
Robin
So i have notes also
Robin
Class teacher provided
Robin
Some theory base which can make out basic clear
Robin
Yes sure
Anonymous
Robin
Anonymous
Yes
Is the textbook that your teacher uses for teaching authored by either one of these - Balaguruswamy, Yashwant Kanitkar or Sumita Arora?
Robin
Yaa
Robin
Balaguruswamy
mito
Anonymous
Yaa
Well then your teachers notes are no good because the textbooks themselves are useless.
Please check the resources section in the pinned post of this group to see the recommended books for learning C++.
Anonymous
As far as I know only colleges like IITs, IISc, PSG, Anna University and a few others use Stanley Lippmann as a recommended text book for learning C++ in India. But the problem is that even now some of them use the 3rd edition though the 5th edition has been out for a while and the 6th edition is on its way. So if you are from India please don't share you teacher's notes here.
mito
Chat Boss
Anton sent a code, it has been re-uploaded as a file
JY
I just use make. Cmake gives me lots of headaches.
JY
Compatibility, cryptic syntax.
JY
C++/C database project has moved to github.com/fserv/jaguardb
Anonymous
Anonymous
Alex
What is c++
Alex
Write c++ program that accept an array of non-negative integers and return the largest integer in the array
Alex
Ok! Please send me link about c++ quation solving
$$tandart
Hi everyone, i need to develop basic game using c++ gui. It may be qt or opengl. What do u recommend? Is there any resource tutorial?
Marius
Isn't it like the best for game development?
Nomid Íkorni-Sciurus
If C++ works for you, then go ahead
Marius
Great =)
Nomid Íkorni-Sciurus
but be aware that other options exist as well
Nomid Íkorni-Sciurus
Great =)
I personally like Lua and C#
Nomid Íkorni-Sciurus
as I find C++ to be too complex for me
Nomid Íkorni-Sciurus
but this is subjective
Juan
I'm trying to expand my io with pcf8574
my sensor driver code, it require a input to read and a output to send clock signals
can it be done?
Juan
hmmm? 🤔Is I2C likely too slow for the required timing accuracy?
Juan
oh im sorry
Jose
oh im sorry
No problem :)
I prefer to tell you instead of being warned by admins
JY
Start C++ with struct and replace pointer to function to method functions
Albatross
If anyone is using ENet, fmod, SDL, or GLFW, please DM me. I need some assistance regarding these libraries, and if you're familiar with them, I would appreciate your guidance in initializing these libraries in C++. Thank you.
abdisa
(FOR WINDOWS )
Do you guys know any way to install curl library and how to use it on my cpp project
With out installing Visual Studio that thing is very heavy
abdisa
Guillermo do you think it will work if i include the entire source file from github
klimi
Guillermo
probably not
Guillermo
libcurl needs some settings depending on the platform you are using
Guillermo
you will need to build it from source code aand link it with your software.
Guillermo
Tha'ts not really difficult
Guillermo
you could use the precompiled libraries
Guillermo
on linux you should use apt install libcurl-dev (more or eless)
Guillermo
on Windows, I'm sure there is a library in vcpkg repositories
abdisa
abdisa
Manav
I set up simple web server with crow framework for C++..by http
How I can do live video stream in it?
Manav
Pleas help me to do live video stream in crow framework
Manav
Anyone?
Chat Boss
kei sent a code, it has been re-uploaded as a file
thelissimus
I'm reversing a linked list. I can't possibly think of other way. What am I doing wrong?
thelissimus
I end up breaking the chain of pointers after the reverse is called.
thelissimus
Btw, I want to reverse in place without allocations.
Jaime
where are channel in spanish in C/C++
thelissimus
Ziky
Ziky
but you have pointer pointing to the begining of your list
Ziky
you are pasing it by copy to reverse function
Ziky
so you have no chance to change it from that function
thelissimus
ah, so I should also mutate the pointer
thelissimus
List ** ?
Ziky
yes
thelissimus
yes
It worked. Thank you for preventing me from going insane.
Ehsan
Oh Okay