Ad

Thursday, July 25, 2013

Get IP Address of a Computer by C Program

IP address of a computer can be shown by using C program. It easier than other methods. Let's use it.......

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

   return 0;
}

0 comments:

Post a Comment