...
i tried to use clang on windows with clang lib++, but I couldn't, can anyone tell me how they did it?
webly.
That's not what I meant
If anything I learnt from this server avoid @neko_code at any cost
webly.
Does someone know OpenGL?
A Lil bit... Was trying to learn shaders and stuff
webly.
Notes of c , c++
Dm me... Indian undergrad rt?
Ludovic 'Archivist'
If anything I learnt from this server avoid @neko_code at any cost
Dima is nice, it just shows how long you managed to stay out of my sight
V = ヴァルン
Bhai koi hai jisko socket programming aati ho
V = ヴァルン
Mujko udp client server c lang mai banvana hai
Dima
@roxifas do something
Dima
read the rules and it also magically says english only
...
If anything I learnt from this server avoid @neko_code at any cost
@neko_code is not bad, she talks a little witty, that's all
Rose
Mujko udp client server c lang mai banvana hai
Offtopic discussions should be done in the C/C++ Offtopic group. Please take your discussion/questions there.
Simple Sorcerer
Mujko udp client server c lang mai banvana hai
To write a client on Linux, you just need to google an example on GitHub and create a server using the command "netcat"
Rose
Windows ke liye chahiye bhai
User V = ヴァルン has 1/2 warnings; be careful! Reason: non English
Great
Notes
Simple Sorcerer
Windows ke liye chahiye bhai
I finally found a simple example https://www.binarytides.com/socket-programming-c-linux-tutorial/
Simple Sorcerer
Hmm, it turned out there was only TCP here
Great
C language notes
Great
Rose
Great
Hey james
Great
Could u please tell me how to get notes of C language?
Ahmed
Hello, Can someone please share some good c++ books for beginners? I have actually a hard time finding good books for c++. All of them are difficulf for beginners. I need some books for preparing for DSA too
Rose
!warn dm spam
You need to be an admin to do this.
Rose
!report dm spam
Reported Ahmed Ali [6854090301] to admins.​​​​​​​​​​​
Ahmed
Sorry, I didn't no it is spam.
Ahmed
I am new here
Rose
Hello, Can someone please share some good c++ books for beginners? I have actually a hard time finding good books for c++. All of them are difficulf for beginners. I need some books for preparing for DSA too
Please check out this channel - @Resources for information on learning sources for C and C++ (books and videos) and Frequently Asked Questions.
harmony5 🇺🇳 ⌤
Sorry, I didn't no it is spam.
Don't dm without first asking
harmony5 🇺🇳 ⌤
It's common netiquette
Gleb
guys how to include a third-party libs from GitHub? I'd like to use websocketpp in my project. But when I download a git rep I cannot include a header. I use vs code, pls, help me
Rose
User Abhi 2 has 1/2 warnings; be careful! Reason: spam
Jibril
LOOPS
Jibril
FUNCTIONS IN C++
Dima
Simple Sorcerer
LOOPS
EVENTS
voidy
guys how to include a third-party libs from GitHub? I'd like to use websocketpp in my project. But when I download a git rep I cannot include a header. I use vs code, pls, help me
I'm not exactly sure, I've rarely used 3rd party libs. Once try adding your dependent library to CMakeLists.txt. I've installed Google test and spdlog that way without having to touch their repos or smth.
sameer
into the bad land
Gleb
but what shall I do if I don't want to use any package manager? I've heard that I can use only makefile and .sh files for this purpose
Gleb
If you use CMake already, use fetch_content
can u describe me difference between CMake and makefile, pls?
Simple Sorcerer
can u describe me difference between CMake and makefile, pls?
These are slightly different things. CMake generates makefile CMake can be compared with AutoTools I can’t describe what it is and what it’s for, you should read it on Wikipedia or on the official websites of these tools
Ludovic 'Archivist'
can u describe me difference between CMake and makefile, pls?
CMake is a meta build system, similarly to autotools as previously stated. It generates the infrastructure for an actual build system to build the project according to the platform and its arguments
Gleb
CMake is a meta build system, similarly to autotools as previously stated. It generates the infrastructure for an actual build system to build the project according to the platform and its arguments
can u tell me why do we use sudo make install? I saw a script where it was at the end of a program and it was using with cmake .. sudo make install
Gleb
I'm not sure I understand it properly
Gleb
no I understand that, but what does it do? I mean what does the sudo make install do?
Gleb
it doesn't compile anything, bec there is no "make" why do we use it?
Gleb
so, as I understand we just generate an infrastructure and then do nothing, but we use sudo make install, why?
Gleb
I saw this in some video where a guy wanted to use third-party lib and he cloned it from git and then he wrote this script where were cd /path/to/lib/ mkdir build cd build cmake .. # mb bc there is a CMakeLists.txt sudo make install
Never Spam Bot
Gleb is now approved by the group admin and can send messages without any restrictions and also he has his own Makefile where he compiled and link his main project with one file "main.cpp" and one target "all" See spam? Quote the spam message in the group and reply to it with /spam in the group.
Ludovic 'Archivist'
it doesn't compile anything, bec there is no "make" why do we use it?
"install" is just a normal make target, it depends on the default target meaning it builds before installing
Ananth
Yes
Ananth
"Make install" usually copies files to /usr/bin or other directories which needs root access
Ananth
Hence sudo make install
Ananth
If you open the Makefile , you can see what it does. It's just a text file
Shobhit
How to get started from basic C/C++ to advanced C/C++
M.P
Hlo
harmony5 🇺🇳 ⌤
Rose
Same question?
Please check out this channel - @Resources for information on learning sources for C and C++ (books and videos) and Frequently Asked Questions.
Rose
Purge complete.
Anonymous
I want to develop an app first. Does anyone know how to do this?
Anonymous
On Android?
Android and Apple
klimi
Android and Apple
for android you can use https://developer.android.com/ndk/guides/ For ios I don't think c/c++ is supported
Simple Sorcerer