Skip to content
Download Android App: Follow Us:
Simple2Code
  • Home
  • Java
    • Java Tutorial
    • Java Programs
    • Java Pattern Programs
  • C
    • C Tutorial
    • C Programs
  • C++
    • C++ Tutorial
    • C++ Programs
  • C#
    • C# Tutorial
    • C# Programs
  • Apps
  • Blog
  • About Us

C Tutorial

C – Structures and Pointers

In this tutorial, you will learn how to use pointers in structure and how to access the members of structure using pointer. But before, if you do not know about structure and pointers click the link below. struct in C …

Read moreC – Structures and Pointers

Categories C Tutorial

Structure in C with Example

In C programming, the structure is user-defined data types that allow us to store the combination of different data types together. All the different data type variables are represented by a single name. As we have studied earlier that Array …

Read moreStructure in C with Example

Categories C Tutorial

C String – strchr() function

strchr() function in C is used to search the stated character in a string. It searches the string for the character and stops when the first time the character is found. And if the string needs to be printed, only …

Read moreC String – strchr() function

Categories C Tutorial Tags c string programs

C String – strupr() function

strupr() function in C String converts all the characters present in a given string to Uppercase. The strupr() function is defined in the header file string.h. It takes a single argument that is the name of the string and is …

Read moreC String – strupr() function

Categories C Tutorial Tags c string programs

C String – strlwr() function

strlwr() function in C String converts all the characters present in a given string to Lowercase. The strlwr() function is defined in the header file string.h. It takes a single argument that is the name of the string and is …

Read moreC String – strlwr() function

Categories C Tutorial Tags c string programs

C String – strrev() function

Reversing a string in C can be done by strrev() function in a single line. This function simply reverses the given string in a program. The strrev() function is defined in the header file string.h. It takes a single argument …

Read moreC String – strrev() function

Categories C Tutorial Tags c string programs

C String – strcmp() function

strcmp() function is used to compare two string to each other and returns an integer value. The strcmp() function is defined in the header file string.h. It takes two arguments, the name of the first string and the second string. …

Read moreC String – strcmp() function

Categories C Tutorial Tags c string programs

C String – strcat() function

strcat() function is used to combine two string together to form a single string in a program. It concatenates two strings and the final result is returned to the first string. The strcat() function is defined in the header file …

Read moreC String – strcat() function

Categories C Tutorial Tags c string programs

C String – strcpy() function

strcpy() function in C is used to copy the contents from one string (source) to another string (destination). The strcpy() function is defined in the header file string.h. It takes two arguments, destination and source. The source is from where …

Read moreC String – strcpy() function

Categories C Tutorial Tags c string programs

C String – strlen() function

strlen() function in C is used to calculate the length of the given string. It counts the number of characters present in a String excluding the null character ‘\0‘. The strlen() function is defined in the header file string.h. It …

Read moreC String – strlen() function

Categories C Tutorial Tags c string programs
Post navigation
Older posts
Newer posts
← Previous Page1 Page2 Page3 … Page8 Next →

More Topics

  • Java Program to find the sum of the Largest Forward Diagonal
    28 April 2024
  • C Program to search an element in an array using Pointers
    7 January 2024
  • C Program to find the sum of the digits of a number using recursion function
    7 January 2024
  • C program to find factorial of a number using Ternary operator with Recursion
    6 January 2024
  • C Program to Add Two Numbers Using Call by Reference
    6 January 2024
  • Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python
    1 February 2023
  • String Pattern Programs in C
    29 July 2022

Categories

  • C Programs
  • C Tutorial
  • computer fundamentals
  • CPlusPlus Programs
  • CPlusPlus Tutorial
  • CSharp Programs
  • CSharp Tutorial
  • HTML
  • Java Programs
  • Java Tutorial
  • javascript
  • Uncategorised

Simple2Code

  • About Us
  • Privacy Policy
  • Disclaimer
  • Sitemap

Search

Follow Us:
Copyright © 2025 Simple2Code