Searching...
Thursday, September 26, 2013

Find out Ip address of your pc using C programming

8:49 PM

 Source code to find out ip address of a pc

 //Code start
#include<stdio.h>
int main()
{
    system("ipconfig");
    return 0;
}


//Code end

Compile and run the code you can see your ip address.

0 comments:

Post a Comment

Followers