/* * w1_c2_lecture.h * * Created on: Mar 7, 2019 * Author: johnsontimoj */ /////////////////////////////////// // // Week1 - Class2 Lecture examples // ///////////////////////////////////// #ifndef W1_C2_LECTURE_H_ #define W1_C2_LECTURE_H_ // // Function passing back the value read "by pointer" // void read_val(int * value); // // Function printing a value "passed by value" // void print_val(int value); #endif /* W1_C2_LECTURE_H_ */