0

Can any one explain me difference

Proper difference between a assecing and initialisation with the best example so that a beginner can understand

19th Jun 2020, 9:01 AM
Pai Deekshith
Pai Deekshith - avatar
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);
19th Jun 2020, 9:10 AM
HonFu
HonFu - avatar