0
Can any one explain me difference
Proper difference between a assecing and initialisation with the best example so that a beginner can understand
2 Answers
+ 3
Initializing means giving a variable its first value at the moment you declare it.
int n = 42;
Accessing means that you use the stored value in your program.
printf("%d", n*n);