tutorial

C Basic Syntax

The C basic syntax specifies the rules for things to be written in a specific sequence to form meaningful instructions for the compiler. For example, how a variable should be declared, how to start a line of code, how to end it, where to put quotes, where to put braces, […]

C Basic Syntax Read More »

Python Type Casting

At times, we need to specify the data type of a predefined variable, or we need to change the data type of a variable. This is known as type casting. In computer programming, type casting (or simple ‘casting’) or type conversion is changing the data type of any entity. Example of type

Python Type Casting Read More »

C Installation

To start programming in C, you must have a compiler installed in your system. A compiler is a computer program or a software which converts source code written in a programming language to the  machine language code. In general, a compiler converts your code into a form that your computer

C Installation Read More »

Python Strings

In programming, a string is a series or a sequence of characters. A character is a symbol or a letter or even a number enclosed in quotes. Some example of strings may be – sagar, roll12, %#@!&. How to create a string in python – In python, a string can

Python Strings Read More »

Introduction to C

Introduction C is a general-purpose high-level programming language originally developed by Dennis Ritchie at AT & T’s Bell Laboratories (USA) in 1972. It was mainly developed as a system programming language to build an operating system. One of the main features of C includes low-level memory access, a set of

Introduction to C Read More »

Python Numbers

A numeric value is a value in the form of a number. Basically there are three types of numbers in python – int float complex   A variable of numeric type is created as soon as you assign a numeric value to it. For eg x = 1 int ‘int’ stands

Python Numbers Read More »

PHP Comments

A comment in php is a line or a couple of lines which is not executed by the php interpreter. PHP supports both single line comments and multi line comments. Comments are pretty useful when writing code in PHP. Comments in PHP can be used to – Let other people

PHP Comments Read More »