Dima
learn both
Anonymous
why not C#?I m learing C#first cause ı like it more
It will help u in Web dev but it's easy u don't get much concept clear If u learn c all language gonna be simple to learn
Anonymous
Suka
For what it is used
https://en.m.wikipedia.org/wiki/Go_(programming_language) mostly web related app
Misha
I need to link two versions of the libssl3.0 and libssl1.1 libraries, but I get a warning that errors may occur. Please tell me how to solve this problem. CMAKE: add_executable(${PROJECT_NAME} main.cpp database.cpp telegram.cpp) target_link_libraries(${PROJECT_NAME} libtdclient.a libtdcore.a libtdapi.a libtdactor.a libtdnet.a libtdutils.a libtddb.a libtdsqlite.a) target_link_libraries(${PROJECT_NAME} ${OPENSSL_SSL_LIBRARY} ${OPENSSL_CRYPTO_LIBRARY} ${CMAKE_DL_LIBS} ${ZLIB_LIBRARIES} libmysqlcppconn.so) LINKER: [ 25%] Linking CXX executable bin/telegram_test /usr/bin/ld: warning: libssl.so.1.1 required by /home/misha/project/test_telegram/lib/mysql/lib64/libmysqlcppconn.so may conflict with libssl.so.3 /usr/bin/ld: warning: libcrypto.so.1.1 required by /home/misha/project/test_telegram/lib/mysql/lib64/libmysqlcppconn.so may conflict with libcrypto.so.3 LDD libmysqlcppconn.so libssl.so.1.1 => /home/misha/project/test_telegram/lib/mysql/lib64/./private/libssl.so.1.1 (0x00007f5d5c200000) libcrypto.so.1.1 => /home/misha/project/test_telegram/lib/mysql/lib64/./private/libcrypto.so.1.1 (0x00007f5d5bc00000)
Misha
HELP!
Night devil
Bro learn python if u are newbie in programming It will help u in many things too
And if I need c ++, then also learn python? +, Python I don't know much
Anonymous
And if I need c ++, then also learn python? +, Python I don't know much
Bro u can directly c++ too but it will be little bit hard at starting and if u don't like get frustrated u will leave in between that's why i said python
Anonymous
Because the syntax the complexity and no garbage collector And pointers concept But in python it's like English only U get many library
Anonymous
If u have enough time do c++ and if less time do python because u will learn it fast then c++ And if u are in a medium means not much time not less so u can even do Java
Night devil
Thx
Fred
Hello Please I need the setup for gcc. I tried downloading it from the official website but it no more there. I also tried using third party app to download it also didn't work. Please help me
Fred
How? I don't get it
Fred
Please my system is windows
Danya🔥
Don't use gcc on windows
Fred
Recommend a different one for me
Danya🔥
Recommend a different one for me
https://github.com/llvm/llvm-project/releases/tag/llvmorg-16.0.6
Fred
https://github.com/llvm/llvm-project/releases/tag/llvmorg-16.0.6
Have gone to the site but didn't see the exact one
Danya🔥
Have gone to the site but didn't see the exact one
Is it so hard to look for "exe" files?
Danya🔥
😂
https://visualstudio.microsoft.com/vs/community/ use this
Anonymous
Danya🔥
Fred
Use mingw 32
I have tried this one it didn't work
Anonymous
I have tried this one it didn't work
Mine is working nicely 😄
Anonymous
I have tried this one it didn't work
U haven't followed imp steps that's why it didn't work for u
Anonymous
Please explain to me the imp steps
There are many see coding with Harry tutorial for this mingw
Azadi
Please explain to me the imp steps
Did you Google it? There some tuts on YouTube too. I recently downloaded a zip, extracted (mingw64) and tested it, it works fine.
Aliyu
Hi guys I'm new here
Fred
Did you Google it? There some tuts on YouTube too. I recently downloaded a zip, extracted (mingw64) and tested it, it works fine.
I have downloaded the (mingw 64) file and included it in the file path. But the problem is whenever I run the MinGw-W64 installer, it is not able to download the GCC compiler
Fred
Use msys2 https://www.freecodecamp.org/news/how-to-install-c-and-cpp-compiler-on-windows/
I have used this one too. Just that it was not able to download the GCC compiler
Fred
If you have the file as a standalone exe file I be glad if you share it here
Anonymous
It will help u to download gcc compiler
Anonymous
Anonymous
Is she owner of grp
Danya🔥
Is she owner of grp
No one is owner of the group
Dima
wtf who would code in vs code
Anonymous
wtf who would code in vs code
I do it give emmet abbreviations and easy to write fastly
Danya🔥
I just do not think it's a great resource or even the one which can be called "not bad as the dog shit" But since she is Indian more that I am and I trust her opinion about Indian education, I asked her
Fred
No one shares executable files here
Then I sending it to me in my DM will help. When you get it
Danya🔥
U are foreigner Usa?
This is international group There are no foreigners here And don't offtop
Dima
most people
I mean, c and c++ code, lol. Just buy the subscription for full feature IDE
klimi
I mean, c and c++ code, lol. Just buy the subscription for full feature IDE
yeah, for c and c++ people do it in vs code or clion
Anonymous
Yeah. Not worth it all. The content was just horrible. Deleted it myself
Danya🔥
I mean, c and c++ code, lol. Just buy the subscription for full feature IDE
I code in VS Code I have company-provided subscriptions to VS and CLion but both are bad for my usecases and very sluggish
Dima
I code in I-Do-not-remember-asking tool
Dima
Danya🔥
VS Code + clangd plugin + Microsoft C++ plugin (for debugging) with disabled Intellisense is better than any IDE
Danya🔥
I code in I-Do-not-remember-asking tool
https://t.me/programminginc/501645 I'd suggest you to go to the doctor
Danya🔥
Dementia in 20s is not good
Dima
Ehsan
..........
Elnee
Hi all. Overloading operator+ inside the class should I make a new copy inside, populate and return it, or directly modify "this" and return "this"? Which approach is preferable?
Mahdiy
Also vim (or neovim)
With lsp config
Azadi
You don't need to copy anything inside the function as it is addition not copying.
T& operator+(const T& rhs) { // do addition return *this; }
Danya🔥
That's bad
Danya🔥
Operator+ is pure and should not modify the operands