Manuele
Just search on the internet....
Manuele
It's not so difficult
Jussi
Are u up for a Challenge ?
if it is not too much to implement...
BinaryByter
Their time is limited on earth
don't remind me please
Anonymous
don't remind me please
hey ur time is limited
Daniel
Hi everyone! Someone could indicate a great static analyzer for C++ velopment on linux machine GCC compatible ?
Dima
anyone knows assembly at advanced level?
Jussi
Nope sorry
Dima
I need to inspect one thing lol
Dima
what's going on there, why its adding multiple items to stack? (push/pop)
Dima
Jussi
Who is Neko
Dima
My neko engine
Dima
i needed that method in unix as replacement for winapi's SwitchToFiber and friend @work helped me with that
Dima
am not asm expert, but I need to get into it one day
Ибраги́м
Just search on the internet....
OK, maybe we can give that but there's still more u MSVC dont have that GCC has. RISC, AVR, SPARC ...? https://gcc.gnu.org/backends.html https://en.wikipedia.org/wiki/GNU_Compiler_Collection#Architectures
Ибраги́м
Hi everyone! Someone could indicate a great static analyzer for C++ velopment on linux machine GCC compatible ?
1. CppCheck: C, C++ static code analysis - https://github.com/danmar/cppcheck 2. PVS Studio: PVS-Studio is a tool for detecting bugs and security weaknesses in the source code of programs, written in C, C++, and C#. It works in Windows, Linux, and macOS environment. - https://www.viva64.com/en/pvs-studio/ - https://www.viva64.com/en/b/0457/ I'd advise using Qt Creator, it comes with Clang Static Analysis. U will get pretty good warnings.
Daniel
1. CppCheck: C, C++ static code analysis - https://github.com/danmar/cppcheck 2. PVS Studio: PVS-Studio is a tool for detecting bugs and security weaknesses in the source code of programs, written in C, C++, and C#. It works in Windows, Linux, and macOS environment. - https://www.viva64.com/en/pvs-studio/ - https://www.viva64.com/en/b/0457/ I'd advise using Qt Creator, it comes with Clang Static Analysis. U will get pretty good warnings.
Thanks. I'm trying to mount an automated continuous integration system using free software. For this moment I see Jenkins + Google Test and Google Mock.. CPPChecker sounds good on this context, but I would like a linter that is a adherent to C++ Core Guidelines. Modern C++ is the aim. Would you have any tips about free automated continuous integration system for Modern C++ ?
Daniel
And a plus. All (enviroment dev and application dev) will be linux =)
Ибраги́м
Not much, but it's sth: https://github.com/facebookarchive/flint
Anonymous
Notte
Anonymous
Notte
Traduction = Night
Anonymous
Ah
English Group😂
Anonymous
Anonymous
Night
Anonymous
For you guys❤️
Anonymous
😂
Anonymous
Can you guys help me? I am defining a string, char var[10]; If I use sizeof(var), I get 10. No problems, until I send that array inside a function parameter. void func(char array[]) { printf("sizeof: %d", sizeof(array)); } Then it prints 8. Why?
Anonymous
An array in function parameter is always a pointer
Anonymous
To know the size of a string, you can use the strlen function
Anonymous
isn't also a pointer outside the parameter?
Not necessarily, some cases is a static array
Anonymous
If he declared as char[10] is a static array
Anonymous
To be a pointer would be char* array = malloc(10)
Anonymous
If he declared as char[10] is a static array
I thought it was also a pointer because I could do char array[10]; char* ptr = array; without using &array to get the address of array
Anonymous
of the*
Anonymous
I thought it was also a pointer because I could do char array[10]; char* ptr = array; without using &array to get the address of array
A static array has similarities with pointer. But there are some differences. For example, when you declare a static array the compiler deallocate memory. And is impossible to change the array value. It's not possible to do array = str
__getitem__
anyone alive ?
Anonymous
sleeping😵😵😵
__getitem__
__getitem__
need help in C .
Anonymous
Anonymous
maybe I can try...what's problem?
Anonymous
emmmm.....maybe later...🤪🤪🤪
Anonymous
gotta sleep now...
Anonymous
Hey guys.
Anonymous
Best book of C and C++
Anonymous
Beginners
Anonymous
Anyone help me😃😃😃
Anonymous
Strousselhaff
Anonymous
Anonymous
Damn I actually just confused myself by purposely fucking up his last name
Anonymous
Sorry I am not understand
Anonymous
Bjarn stroustrup
Anonymous
Bjarn stroustrup
Sorry please try again
Anonymous
Thanks
Anonymous
👍😁
Anonymous
?
Jussi
For C I would go with K&R
Anonymous
C++ Resources: Biased Towards Beginners License: GPL3 Official C++ Homepage: https://isocpp.org ISO C++ committee: https://isocpp.org/std/the-committee Language Improvement Papers: http://www.open-std.org/jtc1/sc22/wg21/docs/papers FAQs http://www.stroustrup.com/bs_faq.html (I actually read this all) http://www.stroustrup.com/bs_faq2.html https://isocpp.org/faq http://www.stroustrup.com/C++11FAQ.html Communities: Reddit (reddit.com) - http://reddit.com/r/cpp - http://reddit.com/r/cpp_questions (U can also ask questions here) Slack: https://cpplang.now.sh/ Discord: https://discord.me/cpp Cpp Reference: http://en.cppreference.com/w/ Books: (contains rare gem) https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list Online Tutorial: http://learncpp.com https://fbb-git.github.io/cppannotations/cppannotations/html/index.html http://www.bogotobogo.com/index.php Pod Cast: http://www.cppcast.com/ Youtube: https://www.youtube.com/user/lefticus1/videos https://www.youtube.com/channel/UCQ-W1KE9EYfdxhL6S4twUNw https://www.youtube.com/channel/UCEOGtxYTB6vo6MQ-WQ9W_nQ Conferences: CppCon: https://cppcon.org/ BoostCon: https://www.youtube.com/user/BoostCon Meeting Cpp: http://meetingcpp.com/ Blogs: https://akrzemi1.wordpress.com/ http://ericniebler.com http://foonathan.net/ https://herbsutter.com/category/c/ https://www.kdab.com/category/blogs/ https://thephd.github.io/ https://blogs.msdn.microsoft.com/vcblog/ Awesome C++ Resource Collections: https://github.com/fffaraz/awesome-cpp https://github.com/rigtorp/awesome-modern-cpp https://github.com/uhub/awesome-cpp — Selected Topics (No particular order) — Modern Cpp Features ( >= C++11): https://github.com/AnthonyCalandra/modern-cpp-features C++17 http://www.bfilipek.com/2017/01/cpp17features.html https://jfbastien.github.io Concurrency & Parallelism: http://www.bogotobogo.com/cplusplus/multithreaded.php http://thispointer.com/c-11-multithreading-part-1-three-different-ways-to-create-threads/ Networking: Networking TS - The proposed standard Networking Library:* Where it all began: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1925.pdf Where we at: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/n4734.pdf Implementations: Typically comes with newer ASIO and Boost::ASIO https://github.com/chriskohlhoff/networking-ts-impl ASIO A cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach. Homepage: http://think-async.com/ Github: https://github.com/chriskohlhoff/asio/ Guides: https://theboostcpplibraries.com https://www.boost.org/doc/libs/1_67_0/doc/html/boost_asio/tutorial.html http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3388.pdf: gives a brief, high-level introduction to how Asio may be used in conjunction with C++11. Other libs: https://github.com/fffaraz/awesome-cpp#networking seastar: For real heavy lifting: https://github.com/scylladb/seastar CppCMS — C++ Web Framework http://cppcms.com Docs http://cppcms.com/wikipp/en/page/cppcms_1x Reference documentation: http://cppcms.com/cppcms_ref/latest/ Pointers: https://web.archive.org/web/20170930150208/http://www.cs.umd.edu/class/sum2003/cmsc311/Notes/BitOp/pointer.html
Wow this is very complete
Anonymous
C++ Resources: Biased Towards Beginners License: GPL3 Official C++ Homepage: https://isocpp.org ISO C++ committee: https://isocpp.org/std/the-committee Language Improvement Papers: http://www.open-std.org/jtc1/sc22/wg21/docs/papers FAQs http://www.stroustrup.com/bs_faq.html (I actually read this all) http://www.stroustrup.com/bs_faq2.html https://isocpp.org/faq http://www.stroustrup.com/C++11FAQ.html Communities: Reddit (reddit.com) - http://reddit.com/r/cpp - http://reddit.com/r/cpp_questions (U can also ask questions here) Slack: https://cpplang.now.sh/ Discord: https://discord.me/cpp Cpp Reference: http://en.cppreference.com/w/ Books: (contains rare gem) https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list Online Tutorial: http://learncpp.com https://fbb-git.github.io/cppannotations/cppannotations/html/index.html http://www.bogotobogo.com/index.php Pod Cast: http://www.cppcast.com/ Youtube: https://www.youtube.com/user/lefticus1/videos https://www.youtube.com/channel/UCQ-W1KE9EYfdxhL6S4twUNw https://www.youtube.com/channel/UCEOGtxYTB6vo6MQ-WQ9W_nQ Conferences: CppCon: https://cppcon.org/ BoostCon: https://www.youtube.com/user/BoostCon Meeting Cpp: http://meetingcpp.com/ Blogs: https://akrzemi1.wordpress.com/ http://ericniebler.com http://foonathan.net/ https://herbsutter.com/category/c/ https://www.kdab.com/category/blogs/ https://thephd.github.io/ https://blogs.msdn.microsoft.com/vcblog/ Awesome C++ Resource Collections: https://github.com/fffaraz/awesome-cpp https://github.com/rigtorp/awesome-modern-cpp https://github.com/uhub/awesome-cpp — Selected Topics (No particular order) — Modern Cpp Features ( >= C++11): https://github.com/AnthonyCalandra/modern-cpp-features C++17 http://www.bfilipek.com/2017/01/cpp17features.html https://jfbastien.github.io Concurrency & Parallelism: http://www.bogotobogo.com/cplusplus/multithreaded.php http://thispointer.com/c-11-multithreading-part-1-three-different-ways-to-create-threads/ Networking: Networking TS - The proposed standard Networking Library:* Where it all began: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1925.pdf Where we at: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/n4734.pdf Implementations: Typically comes with newer ASIO and Boost::ASIO https://github.com/chriskohlhoff/networking-ts-impl ASIO A cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach. Homepage: http://think-async.com/ Github: https://github.com/chriskohlhoff/asio/ Guides: https://theboostcpplibraries.com https://www.boost.org/doc/libs/1_67_0/doc/html/boost_asio/tutorial.html http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3388.pdf: gives a brief, high-level introduction to how Asio may be used in conjunction with C++11. Other libs: https://github.com/fffaraz/awesome-cpp#networking seastar: For real heavy lifting: https://github.com/scylladb/seastar CppCMS — C++ Web Framework http://cppcms.com Docs http://cppcms.com/wikipp/en/page/cppcms_1x Reference documentation: http://cppcms.com/cppcms_ref/latest/ Pointers: https://web.archive.org/web/20170930150208/http://www.cs.umd.edu/class/sum2003/cmsc311/Notes/BitOp/pointer.html
Thank you for this
Yashwanth
If (!msg.equals(""))
Yashwanth
Can someone explain me this
BinaryByter
If statements require a boolean statement
BinaryByter
The function equals returns a bool
BinaryByter
Thats why you can use it like that
Anonymous
It is checking if the character array (string) msg is blank or not.
Anonymous
If (not msg equals "") Aka If msg does not equal to "" In simplified terms
Yashwanth
Thanks both of you
Naol
I want to learn c++ from the begining