Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <windows.h>
  4. #include <Intshcut.h>
  5.  
  6. int main()
  7. {
  8.     std::cout << "Hit enter to check for internet" << std::endl;
  9.     getchar();
  10.     std::cout << "Internet Connection " << (!InetIsOffline(0) ? "[ON]" : "[OFF]") << std::endl;
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement