Thursday, October 14, 2010

What is a computer program?

A computer program is a set of information or command written to perform a specific task for a computer.
It's written by computer programmer by using a set of programming language.
An example of a computer program is
#include <stdio.h>

int main()
{
printf("Hello world!\n");
return 0;
}

No comments:

Post a Comment