Loading

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;
}

This entry was posted in . Bookmark the permalink.

2 Responses to C Program to Get IP Address of Your Computer