Slide 3.11: CGI security concerns
Slide 3.13: Using perl
Home

Using C/C++


  1. Check the C/C++ Help Pages.

  2. Create a C/C++ Program such as HelloWorld.c or HelloWorld.cpp .

  3. Compile the Program.
    1. For C:
        shell> /usr/bin/gcc  -o HelloWorld  HelloWorld.c
    2. For C++:
        shell> /usr/bin/c++  -o HelloWorld  HelloWorld.cpp
    Check the current information of gcc or c++:
          shell> 

  4. Run the Executable File such as HelloWorld .
      shell> ./HelloWorld