argument – POFTUT

How To Run Java Application From Command Line with java Command with Command Line Arguments?

Java is popular programming language used by a lot of developers in different cases on different platforms. We can use Java applications from command line or from GUI but in the start we generally use command line to start the application. In this tutorial we will learn how to compile and start a Java application … Read more

How To Pass and Parse Linux Bash Script Arguments and Parameters

Bash is a powerful scripting language provides by various Linux distributions, Unix and BSD. If we need to make our script dynamic we generally use arguments. Arguments are provided to the script through the command line. In this tutorial, we will examine different use cases of argument passing and examples. Syntax In order to use … Read more

Php – Functions

[rps-include post=6522] Up to now we have write simple and little codes but a real applications can not be accomplished with this type of code. We need to write a lot of code and use some part of the code again and again without same copies. Functions gives us the ability to use given part … Read more

C Functions – Create and Run with Examples

[rps-include post=6557] Functions are a grouping statements to perform operations. Why we group statements in a function? While developing applications same operations can be done thousand of times and writing same code a lot of time is not efficient and exiting. Also changing single statement will require all of the copied statements to change. Every … Read more

Python Class Tutorial with Examples

Class is a popular paradigm used in programming language.  Object oriented programming is created the class structures in order to work programming structures like a real world objects. Class and object words are used to express similar things. Object Class defines the data types, functions, behaviours but do not holds any data or mostly can … Read more

How To Define, Use Functions in Python With Def?

Functions are fundamental feature of Python programming language. Functions provides reusability of code parts. Functions provides some abstraction from code. We can define some code block and use it with a single line without copy and pasting the whole code block.In this tutorial we will look how to define and use Python functions or methods. … Read more