String Manipulation Functions Final
String Manipulation Functions Final
Presented By :
Manoj Kumar Guided By:
Panigrahi MR.Saroj Kumar
Regd Sahoo
No:240720100084
CONTENT
* Understanding string in
C
* Importance Of String
Manipulation
* Common String
Functions
-String Input/Output
-String Manipulation
Understanding
In C , AStrings In C of Characters Terminated by a
String is a sequence
Special null Character (\0).Strings In C are Essentially
Arrays Of Characters That Use The Null Terminator To
Indicate The
•Strings are End of The String
stored as arrays of characters.
•For example, the string “HELLO” is represented in memory as:
6. Data Cleaning
Common String Functions
strcpy(str3, str1);
printf("After copying, str3: %s\n", str3);
Length of str1: 5
Length of str2: 5
After copying, str3: Hello
After concatenation, str1: Hello World
return 0;
}
THANK YOU