Brijmohan lal Sahu - Facebook
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Sunday, November 2, 2014

Program for function without return type and without arguments in C.



Code Box
------------------------------------

/*Program for  function without return type and without arguments*/

#include<stdio.h>
#include<conio.h>
void main()
{
void sum(); //Function Declaration
printf("Sum of two number:");
sum(); //Function call
getch();
}
void  sum() //Function Definition
{
int a,b,c;
a=5;
b=6;
c=a+b;
printf("%d",c);
}

No comments: