Function
Elements of user defined function Function
जैसे
Categories of Function
1. Function with no parameters and no return values
A function is predefined set of statements (or instructions) in c that execute for a special task.
A function is the basic unit of a c program. A function is just like a worker that does a special & particular work. A pair of parenthesis denotes a function i.e. ()
Example of functions
main()
clrscr()
printf()
scanf()
getch()
exit()
Functions are two types
- Standard Library Functions (Built in functions)
- User defined Functions
Elements of user defined function Function
- Function declaration (Function prototype)
- Function definition
- Function call
1. Function declaration
- Return type
- Function name
- List of arguments or parameter list
<Return Type> <Function Name>(Parameter List);
Return type का मतलब Function किस तरह की value return करेगा जैसे int, float, double इत्यादि, Function name कुछ भी ले सकते है जैसे square, add इत्यादि परन्तु function के नाम लेने के rule, variable name rules की तरह होगे और parameter list का मतलब की function में किस तरह value pass होगी जैसे int, float, double इत्यादि
जैसे
int square(int);
यहाँ Start वाला int, function का return type है, square, function का नाम है और parenthesis वाला int, parameter list है। parameter list एक या अधिक हो सकते है।
2. Function declaration
Function definition में function के specific कार्य को define करते है । जैसे अगर Square, calculate करने का function बनाना हो को उसकी definition इस तरह लिखेगे।
int square (int s)
{
return (s*s);
}
3. Function call
Function call का मतलब function को invoke करना
जैसे
square(5);
Note :
1. प्रत्येक program का execution main function से start होता है।
2. मान लीजिए हमे एक कोड को कई बार उपयोग करना है इसके लिए हम function का उपयोग करेगे । function का उपयोग करने से हमे एक ही कोड को बार बार नही लिखना पड़ेगा। उसके लिए हम एक Function बनाएगे और जब भी उसकी जरूरत होगी उसको call करा लेगे। हम function को कितने ही बार call करा सकते है।
अब एक उदाहरण के द्वारा समझते है।
square निकालने के लिए function बनाते है
square निकालने के लिए function बनाते है
/* program to calculate square of a number*/
#include<stdio.h>
#include<stdio.h>
#include<conio.h>
int main(void)
{
int number;
void square(int); /* Function prototype or declaration */
clrscr();
printf("Enter a number");
scanf("%d", &number);
square(number) /* Function call */
getch();
int main(void)
{
int number;
void square(int); /* Function prototype or declaration */
clrscr();
printf("Enter a number");
scanf("%d", &number);
square(number) /* Function call */
getch();
return 0;
}
void square(int n) /* Function definition*/
{
printf("The square = %d", n*n);
}
}
void square(int n) /* Function definition*/
{
printf("The square = %d", n*n);
}
Output :
Enter a number 5
The square =25
The square =25
उपरोक्त प्रोग्राम में एक square का नाम का function, void square(int); बनाया है जो एक ही parameter int type का लेता है और function का return type, void लिया है मतलब function कोई भी value, return नही करेगा और सबसे अन्त में function की definition है।
Function बनाते है समय एक बात हमेशा याद रखना चाहिए कि function की definition और function declaration का header एक जैसा होना चाहिए । मतलब function जो नाम, return type और parameter list, function declaration में लिये है उसी के समान function definition में लेना है। जैसा कि उपरोक्त प्रोग्राम में बताया गया है।
- Functions with no parameters and no return values
- Functions with no parameters and return values
- Functions with parameters and no return values
- Functions with parameter and return values
1. Function with no parameters and no return values
ये इस तरह के Functions होते है जिसमे न हो कोई parameters होते है और न ये function कोई value return करते है मतलब इन function का return type और parameters दोनो void होते है।
जैसे
/* program to print simple message using functions*/
#include<stdio.h>
#include<conio.h>
void print_msg(void); /* Function prototype or declaration */
int main(void)
{
clrscr();
printf_msg() /* Function call */
getch();
void print_msg(void); /* Function prototype or declaration */
int main(void)
{
clrscr();
printf_msg() /* Function call */
getch();
return 0;
}
void print_msg(void) /* Function definition*/
{
printf("Hello, C");
}
}
void print_msg(void) /* Function definition*/
{
printf("Hello, C");
}
Output :
उपरोक्त प्रोग्राम में एक void print_msg(void) नाम का function है जिसका return type, void है और उसकी parameter list में भी void है। इसका मतलब है कि function न तो कोई value, return करेगा और न ही कोई parameter accept करेगा । जब function से कोई value return नही कराते तो उसका return type void देते है।
Note : Functions को कितनी भी बार call करा सकते है और एक Program में एक से अधिक भी Function बना सकते है।
Functions को प्रकार से बना सकते है
1. Global Functions
2. Local Functions.
1. Global Function :
जो function, main() function के ऊपर declare किये जाते है उन्हे Global function कहते है।
2. Local Function :
जो function main() functionकी body के अंदर declare किये जाते है उन्हे Local function कहते है।
NEXT : User defined functions-II
PREVIOUS : continue statement
Hello, C
उपरोक्त प्रोग्राम में एक void print_msg(void) नाम का function है जिसका return type, void है और उसकी parameter list में भी void है। इसका मतलब है कि function न तो कोई value, return करेगा और न ही कोई parameter accept करेगा । जब function से कोई value return नही कराते तो उसका return type void देते है।
Note : Functions को कितनी भी बार call करा सकते है और एक Program में एक से अधिक भी Function बना सकते है।
Functions को प्रकार से बना सकते है
1. Global Functions
2. Local Functions.
1. Global Function :
जो function, main() function के ऊपर declare किये जाते है उन्हे Global function कहते है।
2. Local Function :
जो function main() functionकी body के अंदर declare किये जाते है उन्हे Local function कहते है।
NEXT : User defined functions-II
PREVIOUS : continue statement
No comments:
Post a Comment