I am currently learning C++. I am going through the book "Beginning c++" from Wrox Press. All the stupid little programs I have written so far have worked flawlessly. But now I am in the OOP section and they are dividing up the code into different files. The program I am having problems with...
Can anyone help me understand what is going on in this situation?
$a = 1;
$b = 2;
$c = 3;
print "$a $b $c\n";
for ($a, $b, $c){
$_++;
}
print "$a $b $c"
Output:
1 2 3
2 3 4
When I originally wrote this I thought that Perl might store a reference to each variable in $_ so I used $$_++...
Hey guys,
I am having problems getting apache to allow access to perl scripts on my server. When you try to access one of them it produces the "access denied" message. In the error log is says, "client denied by server configurations" The owner of the scripts is apache and...
You guys all know how to make system commands (right?)
Ex. print `some command`;
Well, I was wondering if it is possible to direct that command towards an app that you are running instead of the shell. (Debian)
Thanks Mucho
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.