Shivang
K&R ??
Jussi
Google "K&R C"
Shivang
Are say to read this book
Jussi
Yes
Shivang
Kk
Anonymous
Honestly, that's something I've never got. Why watch a video when there's a perfectly good, probably better, book out there?
Bader
So if I want to compile and link a library, CMake would be the eaisest route?
Bader
It's a bunch of files, they also depend on boost
Bader
so trying to find the best way to go about this
Bader
*not compile and link, just generate shared library files
klimi
im interested in this too :D
Bader
finally I get some code time. I want to utilize a certain repo for a project :D
Bader
It looks like CMake is the fastest route to do this
klimi
i tried using 3 libs in my apps so i would compile them too
Bader
Also: If the library only uses certain parts of boost, will it only compile the parts it needs? Or the while library?
Bader
whole*
klimi
no idea
klimi
i just ended up using dynamic libs
Bader
i guess I'll find out :D
Bader
i just ended up using dynamic libs
ah ok. I'll do some digging and experimentation and report back
klimi
it will work fine on some computers
klimi
buuuut
klimi
not on windows cuz... windwos thing is... sorta messed up
klimi
lemme know
klimi
im really interested
Bader
👍 this is what I'm trying to compile btw: https://github.com/nemtech/catapult-server
Bader
specifically I only need the sdk/ and src/ dirs
klimi
you do in your project ass subdirs and include dirs
°_°
Guys I'm going to do a major in physic. With c/c++ can I enter in the quantum computing?
BinaryByter
lol
BinaryByter
1) physics != quantum computing 2) no 3) quantum computing will not happen in the next 20 years
Bader
you do in your project ass subdirs and include dirs
yeah I'm doing something like that now... lemme just include some boost libs it should work
Bader
I don't really know what I'm doing, but hey so far it seems to be working except for that
BinaryByter
yes there is
Heitor
Hello, Dear Gurus. I'm new here. I'm trying to build this project from source: github . com/ libpcp/pcp, but I find this error during make: pastebin . com / AVPVP8xB. Any hints?
Heitor
I put spaces to avoid the bot anti-spam
Anonymous
Any c# group?
Ru
HelloWorld 🤓
Ru
Omw ty 😚
Anonymous
Who knows where I can access Mql experts and share some ideas here telegram???
Dexter
Whats wrong here??
BinaryByter
Whats wrong here??
The method of taking the picture
Dexter
The method of taking the picture
Ohh.. Sorry i will do that again... I tried my best to make the linker happy... Just a min.
Anonymous
The linker didn't resolve the function name
Dexter
Whats wrong here??
Problem solved
klimi
Anonymous
how is it related?
Meta Quote lang for building expert advisors (automated trading systems)
Anonymous
It's syntacs almost as that for c++ and c#
Anonymous
That's why I asked that question here believing I can get any help if someone is familiar with trading softwares
Marie
Ankit has 1/3 warnings... watch out! Reason for last warn: promo/ad
Bader
So in general, static libraries are slower and make the executable bigger, versus dynamic?
Bader
or do I have this wrong?
Bader
I'm getting the impresstion that dynamic libs only use what's called, vs static calls the whole thing
Bader
and a side note, anyone here an Arduino library developer?
Roxifλsz 🇱🇹
So in general, static libraries are slower and make the executable bigger, versus dynamic?
Static libraries are pulled into the executable, so they do make it larger, there is no speed difference though
Anonymous
hello
Anonymous
one question
Anonymous
how do we call the library of the visual c++ programs? CLI or CLR or Windows Forms?
klimi
what?
Roxifλsz 🇱🇹
I'm getting the impresstion that dynamic libs only use what's called, vs static calls the whole thing
Dynamic libs have to have every function, because it is unknown which of the functions will be used. Static libs only have the functions actually used by your program, because the compiler optimizes unused functions away
Bader
thanks rokas
klimi
how do we call the library of the visual c++ programs? CLI or CLR or Windows Forms?
cli = command-line interface CLR = Common Language Runtime Windows Forms=Windows Forms (WinForms) is a graphical (GUI) class library included as a part of Microsoft .NET Framework, providing a platform to write rich client applications for desktop, laptop, and tablet PCs.
Roxifλsz 🇱🇹
ahhh so it's actually the other way around :D that makes sense
Yeah, but static libs have their own issues, and you should decide on a case by case basis whether to use static or dynamic
Bader
I have another question, should C files be compiled seperaetly from cpp files?
Bader
As in, compile C using a C compiler first, then c++ using a c++ compiler, then we can link those together later with a c++ tool or something
Bader
awesome okay
olli
I have another question, should C files be compiled seperaetly from cpp files?
Each file is compiled individually anyway, in the end you link them together
Bader
thanksfor clearing this up for me guys