Data types



"void" keyword


In AIDPT "void" specifies an empty data type.
Used as a function return type, it means that the routine does not return a value.

void toScreen(string s)
{

    printf(s);
}


When found in a function heading, it means that the function does not take any parameters.


unsigned int init(void)
{
    return 0;
}


If interested in this project, please fell free to contact the personnel of our group. The project leader is dr.drs. L.J.M. Rothkrantz