system("ping -c 1 127.0.0.1 > /dev/null");
Should do the trick. -c 1 sends only a single packet. We pipe to /dev/null as we don't care about the output to stdout (is that the list you refer to?). If you also want to discard stderr, add a 2>&1 to the end. You might also want to limit the response time using -W.
The call will return an integer representing the success or failure. 0 indicates success, while a non-zero integer represents failure. Here's some sample code: http://ideone.com/cf0eR
Be aware that a failed ping does not guarantee that the device is offline. Although in your controlled environment, it's probably a reasonable thing to expect it to work.