python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
std::any bad cast whenever a function inside a header is implemented in a cpp file returns it
This is my main.cpp
#include <iostream>
#include <unordered_map>
#include <string>
#include "myclass.h"
int main(int argc, const char * argv[]) {
any a = myclass::ret...
Patrik Nusszer
Votes: 0
Answers: 0
Different ways of implementing a coroutine
I can currently think of two ways of implementing a coroutine:
Whenever a coroutine is started, instead of storing local variables on stack, get a piece of memory from heap and use it to store local ...
Sourav Kannantha B
Votes: 0
Answers: 1
Passing two references to the same object in strtoul
The following code runs well under gcc 11.2.1:
// test.c
#include<stdio.h>
#include<stdlib.h>
int main(int argc, char **argv){
char *msg;
unsigned int val;
msg = "1024 2...
onlycparra
Votes: 0
Answers: 1
Is there any way to use ADTrees on python with PYWEKA?
Hi guys I have this question because im trying to use ADTrees of weka on python using pyweka like this:
cls = Classifier(classname="weka.classifiers.trees.adtree", options=["-B", &...
Pablo Moreira Garcia
Votes: 0
Answers: 1