Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ktulu2
  • Content: Threads
  • Order by date
  1. ktulu2

    Undefined reference to main

    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...
  2. ktulu2

    'for' internals

    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 $$_++...
  3. ktulu2

    cgi scripts , access denied

    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...
  4. ktulu2

    Getting creative with system commands

    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

Part and Inventory Search

Back
Top