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
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
Class teacher provided
Are you from India?
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
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
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.
As for Anna University and its affiliated colleges, most students and rarely even teaching faculty don't follow the actual text and reference books mentioned in the syllabus. Instead they follow watered down and extremely exam oriented local author books. Not all but most.
Chat Boss
Anton sent a code, it has been re-uploaded as a file
Anton
Anton sent a code, it has been re-uploaded as a file
Why errno is being set to EINVAL in the following code?
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
Why errno is being set to EINVAL in the following code?
What is the value of limit in your code?
Anton
What is the value of limit in your code?
The problem was caused by not setting max value explicitly. I had to add limit.rlim_max = … before calling setrlimit64()
Anonymous
The problem was caused by not setting max value explicitly. I had to add limit.rlim_max = … before calling setrlimit64()
That was exactly my question. The value of limit is Undefined since you did not initialize it.
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
Isn't it like the best for game development?
It has one of the largest ecosystems, but this doesn't make it "the best". It depends on you
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?
Jose
hmmm? 🤔Is I2C likely too slow for the required timing accuracy?
This question is not related with C/C++ itself. Try to ask into electronics or embedded groups!
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
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
abdisa
what build system are you using?
I made the project on Linux and i have to make it for windows also
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
on Windows, I'm sure there is a library in vcpkg repositories
It didn't work last time when i tried to use vpkg
Guillermo
It didn't work last time when i tried to use vpkg
look at here: https://everything.curl.dev/get/windows/win-vcpkg
Guillermo
It didn't work last time when i tried to use vpkg
do it, and if you get some problem, just paste it into pastebin and paste here the link
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++
Ziky
I'm reversing a linked list. I can't possibly think of other way. What am I doing wrong?
should be at the end you list poiunter pointing to the last item not the first one ? reverse(List *l)
thelissimus
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
kei sent a code, it has been re-uploaded as a file
Why are you using typedef struct in c++? and why aren't using methods
thelissimus
Why are you using typedef struct in c++? and why aren't using methods
it's pure C, its just that bot sent it as a file with .cpp extension
Ehsan
Oh Okay