Showing posts with label function in c programming. Show all posts
Showing posts with label function in c programming. Show all posts

Saturday, March 6, 2021

, , , , ,

Example program for isxdigit() function in c

 The isxdigit() function in c programming checks whether a character is a hexadecimal digit character (0-9, a-f, A-F) or not.Syntax for isxdigit in c :-int isxdigit( int arg ); isxdigit() ParametersThe isxdigit() in c takes a single character as it's parameter. C isxdigit() Return Value if...
, , , , ,

Example program for ispunct in c

 The ispunct() function in c programming checks whether a character is a punctuation mark or not.Syntax for ispunct() in cint ispunct(int argument);it returns a non-zero integer if given characters to ispunct() in c is an punctuation otherwise return 0.Example for Program to check punctuation with...

Thursday, December 17, 2020

, , ,

fopen function in c programming with it's example

 fopen c function is used to open a file which is denoted by the file name in c programming.Syntax for fopen function in c : - FILE *fopen(const char *filename, const char *mode) Parameters For for fopen c : - filename : - this element contain the file name which is going to be open. Mode...