Types of Functions In C Language
Types of Functions:- 1. Library Functions: – Functions defined previously in the library are called as library functions. #include<math.h> main( ) { int n , p, ans; printf(“Enter number and its power”); scanf(“%d%d”,&n,&p); ans = pow(n,p); printf(“%d”,ans); getch( ); } Common Library Functions: stdio.h functions fclose( ) : Closes a stream fcloseall( ) :…
Types of Functions In C Language was originally published on HitBrother












