Sample Program for Declaration Reading
This a sample program to demonstrate the use of various declarations that are used. There are indeed many more that are used based on given situation, but these are references on how few of them are used. #include <stdio.h> #include <stdlib.h> int my_add(int a, int b) { return a + b; } int my_sub(int a, int b) { return a - b; } int my_mul(int a, int b) { return a * b; } int my_div(int a, int b)…
View On WordPress

















