HOW CAN WE DECLARE AN ARRAY IN QB64
Answers
Answered by
1
Answer:
When a function parameter is declared as an array, the compiler treats the declaration as a pointer to the first element of the array. For example, if x is a parameter and is intended to represent an array of integers, it can be declared as any one of the following declarations: int x[]; int *x; int x[10];
Explanation:
Similar questions