Programming Pandit

c/c++/c#/Javav/Python


Latest Update

Saturday, February 23, 2019

C program to find Average of Five Numbers by G Krishna Chauhan

#include<stdio.h>
#include<conio.h>

void main()
{   
int a=5,b=4,c=5,d=6,e=3,f;  
f=a+b+c+d+e/5; 
printf("Average of these numbers is : %d",f); 
getch();

No comments:

Post a Comment