Interactive media specialists design web pages and other interactive computer applications for use in many different settings. Education requirements vary, but education in aspects of graphic design and in specific programs and programming languages is common.
Answer:
#include <stdio.h>
void printValues ( unsigned char *ptr, int count) // count is no of cells
{
for(int i=0; i<count; i++) {
printf("%d ", ptr[i]);
}
}
int main ( )
{
unsigned char data[ ] = { 9, 8, 7, 5, 3, 2, 1} ;
printValues( data, sizeof(data)/sizeof(data[0]) );
}
Explanation:
Remember that the sizeof() mechanism fails if a pointer to the data is passed to a function. That's why the count variable is needed in the first place.
The web server logs what files were served, to which address and when they were served. It also logs errors (in a separate file). The admin has to piece together the logs to follow a user's actions.