Simple Function Example Program In C Programming Language
Function Deinition:
A function is a piece of code block that together perform a operations
Function Syntax:
return_type function_name(parameters...){
code here ;
return_value;
}
Example Program For Simple Function In C Programming
/* Example Program For Simple Function In C Programming Language
little drops @ thiyagaraaj.com
Coded By:THIYAGARAAJ MP */
// Header Files
#include<stdio.h>
#include<conio.h>
void function();
//Main Function
int main()
{
//Variable Declaration
long int n,n1,reverse=0;
printf("Function Call");
function();
// Wait For Output Screen
getch();
//Main Function return Statement
return 0;
}
void function()
{
printf("\nMy First Example Function Invoked");
}
Sample Output:
Function Call
My First Example Function Invoked
Read More Articles
- Use of getch(),getche() and getchar() in C
- Switch Case Statement Example Program In C Programming Language
- C Character Set
- Convert a Floating-point value to an Integer in C
- Data Input and Output gets and puts Example Program In C
- Special Operators In C
- Pointer Representation and Pointer Example Programs
- C Data Input and Data Output
- Simple While Loop Example Program In C Programming Language
- Data Output printf and putchar Example Program In C
- C Introduction
- C Operators
- Storage Classes In C
- C Pointers
- File Management
- C Identifiers
- Loop Control Statements
- Hello World - Simple C Program
- C Array
- Single Character Output Function : putchar()
- C Reserve Words
- C Specific Properties and Implementation
- If else Statement Example Program In C Programming Language
- If Statement Example Program In C Programming Language
- Confusing Array in C ( Array Representation and Initialization )