client server program in c ! By Unknown at 09:37 In previous tutorial " Introduction to Network Programming using TCP/IP ! " : http://programmingethicalhackerway.blogspot.in/2015/...
Introduction to Network Programming using TCP/IP ! By Unknown at 23:36 The client server programming is the most common type(other is P2P network) of network applications. A server is a program(like Google,Yah...
Why do hackers need to network programming ? By Unknown at 23:31 Machines can also talk to each other by means of networking. Similarly, programs can become much more powerful when they have the ability to...
Concept of classes in python ! By Unknown at 23:27 In all our python programs till now, we have designed our program around functions or blocks of statements which manipulate data. This is ...
Concept of function in python ! By Unknown at 23:23 In Python, functions provide organized blocks of reusable code. Typically, this allows a programmer to write a block of code to perform a ...
Conditional Processing and loop concept in python ! By Unknown at 23:20 In the programs we have seen till now, there has always been a series of statements and Python faithfully executes them in the same order. ...
Loops in python ! By Unknown at 23:17 The concept of loop is important for both programmer and hackers. For programmer, you want to execute some code 50 times then instead of wr...