Okay i would like to pull a computer ID from Net View using strings. What i have so far is:
#include %26lt;iostream%26gt;
#include %26lt;string%26gt;
char A;
using namespace std;
int main (){
system("net view") = A
string str1( A , 11, 4 );
}
however, I can't seem to store new view as a variable.
C++ Strings?
int main (){
A = system("net view")
string str1( A , 11, 4 );
}
you were having system(netview) get the empty variable A.. flip it around and it should work
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment