i am newbie, i don't know how to fix it? i don't know how to call function void bubblesort #include<iostream> using namespace std; vo
I have reduce and checked with SamplingInterval and PublishingInterval..values There is no impact. can you suggest any way? Let me know.
I am writing code that terminates by entering e or t , and I want everything to work under two minuets, but I cant get things to work once I include the delay o
So I know how the reduce, accumulator and how fold works in C++, Python, etc... But for some reason in Scade Suite it's kinda confusing to me. Scade Suite Examp
I have a vector with the following elements: std::vector<int> vectorOfInts{ 95, 137, 138, 139, 140, 156, 157, 158, 159 }; Problem: I'm trying to store eac
I'm trying to use cppflow library in windows 10 x64 machine in VS2019 C++. I want to inference my model for batch of images (vector <cv::Mat> ). I write a
I am building a project that will use Unreal Engine 4 to display protein models. Currently I cannot find a way to directly import PDB (Protein Data Bank) files
I'm new to templates and I don't really undestand why this doesn't work. I expected the vector to be constructed with those values. main.cpp template <typ
With the following code, I'm facing an issue. ABC.h namespace abcd { class ABC { public: ABC() = delete; ABC(const std::string&am
I am new in FreeSWITCH library. I have explored library at certain level. I have tried originate command to initiate call using fs_cli and also received events
I am having a QgraphicsView which contains multiple QGraphicsItem. I have some features like zoom-in, zoom-out, Hide - Unhide selected item, Undo-Redo. To imple
Im building an app on Linux in C++, and I find it convenient to move all periodic tasks to other threads. This is my first multi-threaded Linux app(and basicall
In the following program, struct B has two user-defined constructors: one from int and another from int&& (clearly this is not very practical). And an o
I have inherited a complicated (to me) toolbox from a PhD student before me and it uses python2 instead of 3 since it's older. The main file is in python2 and u
Problem: You are given an array of integers that contain numbers in random order. Write a program to find and return the number which occurs the maximum
i'm using this api: Pa_OpenStream() // Open line-in stream err = Pa_OpenStream(&m_stream, &m_inputParameters, &
I'm having trouble getting gtkmm-4.0 to work on Mac OS Monterey. Here is a simple C++ application that uses gtkmm4. // helloworld.cpp #include <gtkmm.h>
I need a way to identify a unique combination of template types that gives me an easily indexable identifier. I have the following class: #include <cstdint&g
Guys! I'm a new user of qt and I faced a problem with qml. This issue has already been discussed in this article, but for python. I write in C ++/Qt 6.1.1, QtCr
Here is a related C answer that doesn't work (as a zero initializer for a struct) in C++: Initializing a struct to 0. One of the solutions presented is this: my