//This is an example, coding not complete. Say main runs the function add, int add adds two random numbers and int random gets a random number from the array. By keeping 3 functions, how would I pass b and c to int add? Right now b and c are undeclared
int main{
add()
}
int add(){
d = b + c
printf("the sum of two random nubmers are %d, d)
int ranom(){
a = [1,2,3,4,5,6]
b = rand[a]
c = rand[a]