Loading

Showing posts with label Get IP Address of Your Computer. Show all posts

C Program to Get IP Address of Your Computer

C Program to Get IP Address of Your Computer


#include<stdlib.h>
 
main()
{
   system("C:\\Windows\\System32\\ipconfig");
   system("pause");
 
   return 0;
}

Posted in | 2 Comments