↧
Strings in Computer Science
You have probably stumbled upon a string data type in some programming language. In C it’s <string.h>, in C++ std::string, Python has them even PHP! They’re useful, pretty straight-forward. And...
View ArticleLanguage in Computer Science
The last post was about strings, so now something about languages. From the theoretical point of view a language is a set of words or more precisely sentences (strings). Possibly and usually an...
View Article