Tag Archives: pre-defined function
- Home
- Posts Tagged "pre-defined function"
- On
- By
- 0 Comment
- Categories: Calculations, division
C# program: function to calculate division of two numbers
C# program: function to calculate division of two numbers In this tutorial, we will discuss the concept of C# program: function to calculate division of two numbers In this topic, we are going to learn how to write a program for dividing two numbers (one by one) using function in C# programming language Division of…
Read More- On
- By
- 0 Comment
- Categories: Calculations, multiply
Multiplication program of two floating-point numbers using function in C
Multiplication program of two floating-point numbers using function in C In this tutorial, we will discuss the concept of Multiplication program of two floating-point numbers using function in C In this topic, we are going to learn how to multiply two floating-point numbers using the function in C language What is multiplication The multiplication is…
Read More- On
- By
- 0 Comment
- Categories: Basic, Basic C language
C program gets() and puts() function
C program gets() and puts() function In this tutorial, we will discuss a simple concept of the C program gets() and put() function Both the functions are used to in the input and output operation of the Strings The gets() functions are used to read string input from the keyboard and puts() function displays it….
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strncmp string function in C programming language
strncmp string function in C programming language In this tutorial, We will learn about strncmp string function in C programming language Description strncmp() – In the c programming language, the strncmp() function returns a negative , Zero and positive integer depending on whether the first n character of the object pointed by str1 is less than,…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strchr string function in C programming language
strchr string function in C programming language In this tutorial, We will learn about strchr string function in C programming language strchr() – In C programming language strchr() string function, pointer displays the given character from its first occurrence. Declaration Syntax Syntax for strchr() function is given below char strchr( const char *str,int ch); Parameter or…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strdup string function in C programming language
strdup string function in C programming language In this tutorial, we will learn about strdup string function in C programming language Description strdub() – In C programming language, strdup string function is a predefined string function which is used to duplicate given string. Declaration Syntax for strdub() function is given below: char strdup( const…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strlwr string function in C programming language
strlwr string function in C programming language In this tutorial, we will learn about strlwr string function in C programming language Description strlwr() – In the C programming language, this is used to Convert the string from any case to lower case Declaration Syntax for strlwr() function is given below char strlwr ( char *string);…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strupr string function in C programming language
strupr string function in C programming language In this tutorial, we will learn about strupr string function in C programming language and its functionality. Description In C programming language strupr() is a string function which is used to convert a given string from any case into uppercase. strupr() – this function is used to convert…
Read More- On
- By
- 0 Comment
- Categories: function in C, Library function in C, Pre-define String function in C
strtok string function in C programming language
strtok string function in C programming language In this tutorial, we will discuss strtok string function in C programming language strtok() -In C programming language, strtok() used to breaks the token into a series of the string using the delimiter. Declaration Syntax The syntax of the strtok() function in the c language is : char…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strset string function in C programming language
strset() string function in C programming language In this tutorial, we will discuss strset() string function in C programming language Strset() – this string function in C programming language replaces the all the characters in a string to given characters. Declaration In the c programming language, the syntax for strset() is given below char strset…
Read More