C codes | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

C codes

Can someone tell me what is wrong with my code please Am trying to use pointer to commute sum, mean and standard deviation https://code.sololearn.com/c63ruMwTMb0n/?ref=app Pls help me explain line 5,6,12,13 and 24

18th Feb 2022, 10:25 AM
Ejeh Wayne
Ejeh Wayne - avatar
2 Answers
+ 2
It has some errors. ** canio.h is drprecated header. Remove it. ** use int main(). ** these lines missing semicolon at end means=sum/n ptr=a And means not declared, you may be trying mean So use mean=sum/n; ptr=a; Comment or remove line 30 5,6 lines are doing variable declaration. 12,13 are accepting input into a array by using a loop. N Input values are stored in array. These two lines are basic, explained in lessons well.. Revise lessons of variables and user input scanf, to understand more. Line: 24 is for the calculation of standard deviation. You can find in google for the formulae... ptr=a ; so now pyr points to array.. you are accessing array by ptr pointer. edit: https://www.mathsisfun.com/data/standard-deviation-formulas.html Hope it helps....
18th Feb 2022, 10:51 AM
Jayakrishna 🇮🇳
+ 1
yes it helps
18th Feb 2022, 2:13 PM
Ejeh Wayne
Ejeh Wayne - avatar