Nroug7: Hiya, im self-learning C++ at the moment and i was wondering, is it possible to create a program that can scan over websites details (Text, pargraphs, sentences etc) and look for updates to that website?
In short, yes.
There are probably libraries out there that allow to access web pages and even if there weren't, nothing would prevent you from making one yourself on top of the TPC/IP networking layer.
However, if you're a beginner and not familiar with sockets or the HTTP protocol, not to mention a load of disposable time, you probably don't want to go there [designing your own library].
For the third party libraries, most third party C++ libraries that don't come from official sources (big companies or well recognized open-source communities) tend not to be very usable and bug-prone (C++ is just one of those languages where you need to know what you are doing and have a near-spotless programming methodology to get things right).
My recommendation: Try python. It comes with a very robust standard library.
http://docs.python.org/library/index.html I believe item 19 of the library will have what you are looking for.