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