C Program to calculate Area and Circumference of Circle

#include <stdio.h> int main() { int circle_radius; float PI_VALUE=3.14, circle_area, circle_circumf; printf(“\nEnter radius of circle: “); scanf(“%d”,&circle_radius); circle_area = PI_VALUE

Read more

c program example Passing values between functions

c program example Passing values between functions c program example function and value pass to function 1   main( )

Read more

write a C program to calculate the sum of its digits

Problem Statement: If a five-digit number is input through the keyboard, write a program to calculate the sum of its

Read more