get_ip

1
c program to get ip address This c program prints ip (internet protocol) address of your computer, system function is used to execute the command ipconfig which prints ip address, subnet mask and default gateway. The code given below works for Windows xp and Windows 7. If you are using turbo c compiler then execute program from folder, it may not work when you are working in compiler and press Ctrl+F9 to run your program. C programming code #include<stdlib.h> int main() { system("C:\\Windows\\System32\\ipconfig"); return 0; } Download IP address program. Output of program: ( In Windows 7) Only part of output is shown in image.

description

cara mendapatkan ip

Transcript of get_ip

c program to get ip address This c program prints ip (internet protocol) address of your computer, system function is used to execute the command ipconfig which prints ip address, subnet mask and default gateway. The code given below works for Windows xp and Windows 7. If you are using turbo c compiler then execute program from folder, it may not work when you are working in compiler and press Ctrl+F9 to run your program.

C programming code

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

Download IP address program.

Output of program: ( In Windows 7)

Only part of output is shown in image.