syntax – POFTUT

How To Set, Configure and Use Vim Color Scheme

Vim is very popular ans useful text editor based command line and GUI. I prefer vim because of its featured over nano etc. Vim have color scheme and highlighting features where different syntax for programming languages can be printed in a pretty and understandable form. In this tutorial we will look how to change color … Read more

Php – Ternary Operators

We have previously examined the if-elseif-else conditional statements. We know that these statements provide branching ability according to the conditions. While using these statements in single and simple situations it may become a trivial task. Php provides an alternative way for simple usage. This is called ternary operators. Syntax Syntax of ternary operator is like below. … Read more

Php – Syntax Overview

[rps-include post=6522] Extension Php source or code files generally ends with .php but generally the extension is not important. Following extensions can be used too. php4 php5 php7 Php Tags Web based programming languages generally uses tags in order to surround related code. Php is web based programming language too and uses <?php … ?> tags. Second … Read more

C Variables and Definition

[rps-include post=6557] Most important function is storing data while the application running. The data may be  age, username, picture, full name etc. To hold data variables are used. Variables are stored in the memory. After application run all variables are cleaned. So variables do not persists between application runs. As variables stored in memory they … Read more

Vim Syntax Highlighting How To Turn On , Off

Vim is old and popular text editor. Vim roots goes to the vi. Vim is improved version of vi. Vim has a lot of features that makes users life better. One of the most loved vim feature is syntax highlighting. Syntax highlighting makes text or code easily readable by coloring statements. For this tutorial we … Read more