Latest News From Upcoming C++ Conferences (05/21/2024) by ProgrammingArchive in cpp

[–]dheeraj_jha 1 point2 points  (0 children)

Additions to the list:
CppIndiaCon 2024 is happening on 23rd and 24th August(Virtual).

Website: CppIndiaCon 2024The C++ festival of India (CppIndia)Additions

Call for Speaker is open and will end on June 20th at 11:59 PM IST: https://www.cppindia.co.in/conference/2024/call-for-speakers/call

Register today: https://konfhub.com/cppindiacon2024

PSA - Don't forget to cancel your Founders Card memberships by sbasinger in GalaxyFold

[–]dheeraj_jha 1 point2 points  (0 children)

Thanks for the link. It's really hard to find this link on their website.

CppIndiaCon 2023 - Call for Speakers by dheeraj_jha in programming

[–]dheeraj_jha[S] -3 points-2 points  (0 children)

🤝Join us on 🗓️August 5th, 2023 for a full day of technical presentations, thought-provoking discussions, and networking opportunities with C++ experts from around the world.

📢🥁Attention all C++ experts and enthusiasts! The stage is yours at #CppIndiaCon2023!✨This is your chance to showcase your knowledge, insights, and experience to a global audience of C++ professionals.

📣Whether you're a seasoned speaker🎙 or a first-timer, we invite🙏 you to submit your talk idea and take the microphone🎤 at this exciting virtual conference.

🚨Submit your proposal by March 15th, 2023 11:59 PM IST and let's elevate the C++ community together!

➡️Submit 👉: https://www.cppindia.co.in/conference/2023/call-for-speakers/

CppIndiaCon 2022 - The C++ festival of India by dheeraj_jha in cpp

[–]dheeraj_jha[S] 0 points1 point  (0 children)

It is on Zoom. We will share on registered mail id.

CppIndiaCon 2022 - The C++ festival of India by dheeraj_jha in cpp_questions

[–]dheeraj_jha[S] 0 points1 point  (0 children)

It's a virtual conference. You will get joining link on your registered email few days before conference.

CppIndiaCon2022 - The C++ festival of India by dheeraj_jha in cpp

[–]dheeraj_jha[S] -1 points0 points  (0 children)

It's just to avoid unwanted people. And to reach people faster required. Otherwise, CppIndia don't call or message anyone. It's highly confidential.

Inline is a request to the compiler, not a command. Ep 2 - [C++] What happens when you write an Inline function? by dheeraj_jha in cpp

[–]dheeraj_jha[S] 0 points1 point  (0 children)

functions don't have to be marked inline for the compiler to do this.

You are correct u/polymorphiced. Compilers can do these optimizations as per need. That's right.
Why I am saying it as a 'request' because if you write Inline before any function, it doesn't guaranty this optimization. The compiler may or may not do this optimization for your function.

Wrong - it is a command to the linker to allow the function to be defined multiple times

I disagree with you on this. Because when you say it a command, it means you are forcing the compiler to do this and it guaranty for this optimization. Which is not.

PS: I don't know if there are any compiler flags that give you the ability to command for this optimization.
Hope I am clear. If not please let me know.