User Profile

Collapse

Profile Sidebar

Collapse
tux4life
tux4life
Last Activity: Jul 13 '09, 11:32 PM
Joined: Jul 13 '09
Location: Belgium
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • tux4life
    replied to How good is your C?
    in C
    May I ask you what the future purpose of this test will be?
    I mean:
    Are you going to comercialize it?
    Or will you be offering it for free?
    And for who will these tests be intended?...
    See more | Go to post

    Leave a comment:


  • tux4life
    replied to Arrays Revealed
    in C
    I see that you didn't cover unsized array declarations, so I'll provide an example here.

    As already told by weaknessforcats, the following declaration isn't possible:
    Code:
    int array[]; // not possible
    unless you directly initialize the array, like this:
    Code:
    int array[] = {1,2,3,4,5}; // an array of 5 elements
    See more | Go to post

    Leave a comment:


  • tux4life
    replied to Dev-C++ bloodshed Installation error
    in C
    What error do you get?

    Can you manually compile the following program from command line?
    Code:
    #include <iostream>
    
    int main()
    {
        std::cout << "Hello World!" << std::endl;
    }
    (save this file as hello.cpp)
    Open a command line window (Start -> Run: cmd), switch to the directory where you saved this file and enter the following command:...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...