C++ :: Interconnectivity Between Two Machines
Sep 19, 2013
I have two machines one computer acting as a server(just processing data and sending responses automated) the other I have have running a client app that will eventually control computer one. Both programs use C++. computer 1 uses LINUX C++ 2nd uses Windows C++. what would I need to add to computer 2 application (windows C++) control and manage computer 2 (linux C++).
View 1 Replies
Mar 30, 2014
I have created a program using a switch statement that uses scanf() to accept a users input. The input variable is defined as an integer and scanf() is also looking for an integer.
One computer I run the program and it will return a value of 0 for all non-numerical inputs such as 'z', and the output thinks the value 0 was input into scanf(). On another computer when I input 'z', the compiler stores this as 198864884, and my program executes correctly giving an error.
View 9 Replies
View Related
May 20, 2012
I wrote a very small program in c++ to automate a process at work. The program basically fetches a binary file from somewhere on the internet, but feel free to look at the source:
#include <windows.h>
#include <iostream>
#include <cstring>
#include <Wininet.h>
[Code]....
The program works on my Windows x64 machine, but it causes a 0xc0000005 (Access Violation) error on the machine I want to apply it to (a Windows NT 6 v7600 x64 server).
The permissions of the NT machine are NT Authority/Network Service, I'm not allowed to change it due to security reasons. Is there a way to avoid this error?
View 1 Replies
View Related