programming-examples/c++/_Basic/Get IP Address.cpp
2019-11-15 12:59:38 +01:00

8 lines
149 B
C++

#include<stdlib.h>
int main()
{
system("C:\\Windows\\System32\\ipconfig");
/* ipconfig command to get ip of system */
return 0;
}