@arunudayakumar
I build C++ applications
Nothing here yet.
Nothing here yet.
Sep 20, 2024 · 2 min read · Question: error while loading shared libraries: libwx_gtk3u_core-3.3.so.0: cannot open shared object file: No such file or directory \=> Working Answer The error you're encountering indicates that the dynamic linker is unable to locate the wxWidgets ...
Join discussionJul 21, 2024 · 1 min read · https://youtu.be/UKZGme8D6Ng CMakeLists.txt cmake_minimum_required(VERSION 3.5) project(ex1 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) # Find the library find_library(RAYLIB_LIBRARY NAMES raylib PATHS /usr/local...
Join discussionMay 27, 2024 · 7 min read · Dictionary: # 1. Create an empty dictionary my_dict = {} print("1. Empty dictionary:", my_dict) # 2. Check if a key exists in a dictionary key_exists = 'key' in my_dict print("2. Does 'key' exist in dictionary?", key_exists) # 3. Update the value o...
Join discussion