WRITE A PROGRAM TO CALCULATE AVERAGE OF NUMBER

#include<stdio.h> int main() { printf(“\n\n\t\t Welcome here \n\n\n”); int n, …
function parameter

Function Declaration Or Prototype

Before a function can be used, it must have first …

Program to calculate the area of a Square

#include <stdio.h> int main() { int square_side, area; printf(“Enter the …

Swap two Numbers using a variable

#include<stdio.h> #include<conio.h> void main() { int x = 10, y …

Write a program to check whether student is pass or fail

#include<stdio.h> int main() { printf(“\n\n\t\t Check Whether student is Pass …