Author: Nathan

Palindrome Detector using C++

The palindrome detector application will first clean and analyze a string and then inform you whether or not it is a palindrome. This is probably one of the strangest applications I built because the requirements forced me to not make use of any header files except iostream. Thus, instead of using a string object to manipulate the palindrome, […]

C’s predefined macros

A list of C’s predefined macros (__FILE__, __LINE__, __STDC__…) with description and an example of how to use them. __FILE__ – a string that holds the path/name of the compiled file;__LINE__ – an integer that holds the number of the current line number;__DATE__ – a string that holds the current system date;__TIME__ – a string that holds the current […]

Back To Top