Today, October 19, 2008, the examination for PhilNITS (Philippine National IT Standards Foundation) will be conducted. The said examination will be conducted simulatenously with the other member countries of ITPEC (IT Professionals Examination Council) namely JITEC of Japan Meteor of Malaysia NITP of Mongolia MCF of Myanmar PhilNITS of the Philippines NECTEC of Thailand VITEC of Vietnam. If you missed the examination today, another exam will be conducted on April 26, 2009. There is still ample time to prepare for [...]
Here is a C program for printing a multiplication table based on a user input n. The resulting table will be n x n. The maximum input is limited to 15 in order for the results to readable. Higher input will scroll the results. #include #include int number, row, column, result; main(void) { /*Input Area – Input number must be from 0 to 15, else input loop will continue */ do { system(“cls”); printf(“Enter max value: “); scanf(“%d”, &number); result=number; [...]






