C Program to print Internet Protocol (IP) address in your machine.

 

C Program to print Internet Protocol (IP) address in your machine.

#include<stdio.h>

#include<stdlib.h>

int main()
{
   system("C:\\Windows\\System32\\ipconfig");
   
   return 0;
}
 

Comments

Popular posts from this blog

C Program to print swap number using third variables

C Program to open and write to a text file using fprintf.