Data types in C++ Programming
Data types in C++ are meant to identify and inform compiler the type of data, memory and associated operations of handling it. Variable in C/C++ both use data-type during declaration…
Read more »Data Types in C Language with example Programs
The C language has a rich set of data types to handle different kind of data entered by programmer. Basically a data type informs compiler about how much memory a…
Read more »Keywords in C++ Language
Keywords are those who has a fixed meaning already defined by Compiler and used to perform certain internal operation. There are 84 keywords in C++ Language including 32 keywords of…
Read more »Keywords in C Language
Keywords in C are predefined reserved words it means their meaning and purpose already defined in C library used to perform internal operation. Every programming language has a set of…
Read more »Features of JavaScript – Advantages & Disadvantages
A JavaScript can be set to execute on events like page loading or when a user clicks elements. A JavaScript can read, write and change the content of an HTML…
Read more »What is SQL? – Introducing SQL in simplest way
SQL – Structured Query Language designed to allow both technical and non-technical users work with a database to manage, manipulate and transform data in a Relational Database Management System (RDBMS),…
Read more »Abstract Data type – Definition and it’s Importance
Abstract Data type provides only usage details of how a function or data type or data structure can be used by client and hiding implementation details from outside world, i.e.,…
Read more »Structure of C++ Program
Programs written in any language follow certain sequence of statements in particular predefined order which know as structure of a program. Similarly, the structure of C++ program has various sections,…
Read more »Structure of C Program with Example
Before start writing C program we should know the basic structure of C program and how the whole program works together so that we can easily debug if an error…
Read more »Install CodeBlocks on Windows, Mac and on Linux
This tutorial is about how to install Codeblocks on your local Environment or PC with Windows, Mac or on Linux. CodeBlocks is a cross-platform, open-source, free IDE that supports GCC,…
Read more »