0
What is the meaning of pointers ,void and main?
2 ответов
+ 1
if you go through the course this will be taught to you in a very simple manner
+ 1
A pointer contains an address (of a variable for example).
void indicates that your function takes no argument (int myFunc(void)) or returns nothing (void myFunc(int n)).
main is the function that is run when launching the program.