C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
created on 23/feb/2018
variables in functions :
main()
{
a = number of lines in dat file
a_p = pointer to a for using it in other functions
float *ptr1 = pointer to calloc for storing orignal data
float *ptr2 = pointer to calloc for processed data
float temp_var = float for storing values form file
}
base_avg_improvised_method_of_below_80_disctinction_v1()
{
div = for storing division state
ptr_multiply = for storing multiply stage
ptr_add = for storing addition stage
ptr_avg = for storing final average
}
*/
#include <stdio.h>
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run