This repository contains basic examples in the C language to cover topics like variable initialization, flow control, basic pointer arithmetic etc.
char *reverseString(char* _string);
int countOccurrence(char *_string, char _c);
Implement a function that sorts the characters of a string in alphabetically ascending order ("a"<"b")
char* sortAsc(char* _string);