write a function that would return the 5th element from the tail (or end) of a singly linked list of integers.
for example:
2 3 4 5 6 7 8 9 10 11
your function would return 7
code should return the 5th element from the tail in a single pass
code should not use any built-in .net collection components
2.) write a function to reverse the words in a string, for example "cat and dog" becomes "tac dna god"
Cat and dog
becomes
taC dna god
do not use any string manipulation functions that you do not implement yourself
code should reverse each word within the string without altering whitespace characters
code should treat punctuation chars as part of the word
code is only required to deal with standard english chars. unicode support is not required
should be your own code and should not use any built-in .net string manipulation calls