Good day, I am actually a young programmer, who wants to develop a webpage that enables someone to take a practice test. It was given to me as an assignment that determines if I will remain a programmer. I know little about PHP codes but none in Mysql. I came to the website and noticed a discussion from @broj1 with another programmer. I don't have a code in mind yet or how I should start about it but I would a really appreciate a little help. All I have been able to do is a direct html quiz and the assignment is to be submitted on Friday. I really need help. Thanks
How do you change below c code to MIPS?
int my number [10];
void fun(int input, int* addr){
if (input %2 == 0){
*addr = 1;
}
}
int main (){
int i;
for (i = 0; i < 10; i+=1){
fun(number[i], &number[i]);
}
return 0;
}