What is the meaning of pointers ,void and main? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

What is the meaning of pointers ,void and main?

3rd Sep 2016, 3:56 PM
saniya inam
2 Respostas
+ 1
if you go through the course this will be taught to you in a very simple manner
4th Sep 2016, 10:08 PM
Null Void
Null Void - avatar
+ 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.
6th Sep 2016, 9:38 AM
Zen
Zen - avatar