Tag: function
Problem 81: Struct GPA Create a simple structure named Student that holds the following variables- i. id…
code: #include<stdio.h> typedef union { double weight; int size; char color[10]; } Description; typedef struct { int…
for formula: http://www.mathsisfun.com/area.htm code: #include<stdio.h> double pi=3.1416; double britto(double r) { double area=pi*r*r; return area; } int…
Syntax: function_type function_name(parameter_type parameter_name,parameter_type parameter_name){ function_body; return function_type; } return will work for any function_type except void….void…
Recent Comments