Tag: c-string

c-string

Split String in C programming using strtok_r() | Parsing CSV File

How to split String in C programming with delimiter using strtok_r() function? Read and parse the CSV file in C/C++ and store it in the array.

c-string

Program to Check Palindrome String in C, Python

Write a program for palindrome in C, Python? What is Palindrome and how to identify or find if the string is Palindrome or not?

c-string

[Solved] Undefined reference to strrev | Error Code in C

Got error “undefined reference to strrev” while coding in C? Or for any other string function. Runs fine on one of the system, not on other systems?

c-string

How to Write a code to implement strstr function in C?

Write a program to implement strstr function in C. Complete code explained about implementing string function strstr.

c-string

[Program] How to Check if Two Strings are Anagrams in C?

What is Anagram of the string? Write a program to check if two strings are anagrams in C? Complete code explained with examples.