TipsMake
Newest

Tags : running commands in c

The strchr () function in C
Programming C 25 May 2019

The strchr () function in C

char * strchr function (const char * str, int c) looks for the first occurrence of the character c (an unsigned char) in the string pointed to by parameter str.

Read More
The strerror () function in C
Programming C 25 May 2019

The strerror () function in C

the function char * strerror (int errnum) searches for an internal array for errnum error numbers and returns a pointer to a string of error messages.

Read More