#include<stdio.h>
void main(void)
void change(void);
int x=4,y;
y=x;
{
printf("\n The value of x is = %f and the value of y is = %d",x,y);
change();
printf("\n The value of x is = %d and the value of y is = %d ",x,y);
}
void change(void)
{
x=x+3;
}
and i need this programs plz .. can u help me
(a) Write a C program that uses two user defined functions, one of the functions calculates the sum and the other calculates the product of two numbers.
(b) Write a C program that uses pointers to calculate the sum of the elements of an array.
(c) Write a C program that declares and initializes two variables and then write their values on a file.