Home Blog
Explaining a simple C++ program

C++ : Explaining a simple C++ program

C++ files should be save with .cpp extension C++ program start by first running the main function, so let’s add int main() {   } Let’s make it proper function int main() {     return 0; } To print something on the screen we using std::cout...

C++ : Getting Started

What is C++? C++ is a programming language used to create softwares, games etc Tools to Install Download mingw setup file of Codeblocks from the following link http://www.codeblocks.org/downloads/binaries/ And install it with default settings   Creating your first C++ Program ...

how to exclude a folder from avast antivirus in windows 10

In this article I'm going to show you the way to exclude a specific folder from the avast active shield to scan. This issue occurred when I was practicing my C++ programs and whenever...

PHP Setup

We need 3 softwares to run and test our php code in our system Code Editor Server Browser So let's download and install these softwares on our system. 1. Code Editor There are many code editors you...

01 – Introduction to PHP

01 – Introduction to PHP What is PHP? PHP is a server side scripting language and the letters PHP stands for “PHP: Hypertext Preprocessor”. PHP is used to create dynamic and interactive websites. PHP code is executed on...
windows-10x

Microsoft’s Windows 10x is coming to personal computers by June 2021

Rumors are that Microsoft is ready to release windows 10x, a new lightweight version of windows 10, in the first half of 2021. According to rumors first version of Windows 10x is finished and...
block_a_program_from_accessing-_internet_on_windows_10_image_00

Block a program from accessing internet on Windows 10

Sometime we don't a program to access internet so In this article we will block Microsoft Edge from accessing internet for this purpose we will create two new rules Inbound Rules and Outbound Rules...
what is python

Python 01 – What is Python?

What is Python? Python is a high-level, general-purpose programming language. Created by Guido van Rossum and released in 1991. Where Python can be used? Python can be used to build anything, because it is used in almost...
windows-10-local-user-account

How to create a local (offline) user account in windows 10

In this article we will create a local (offline) user account with administrator permissions. To do that follow the steps given bellow. 1. Click on Start button 2. Now click on gear icon to Open Settings 3....
check mobile kernel architecture

How to check if your Android device is 32bit or 64bit

Now a days much like personal computers and laptops, Android devices are also either 32-bit or 64-bit. This architecture is determined by the hardware specifically the CPU used on the device and there is...

Popular Posts

Explaining a simple C++ program

C++ : Explaining a simple C++ program

C++ files should be save with .cpp extension C++ program start by first running the main function, so let’s add int main() {   } Let’s make it proper function int...

C++ : Getting Started

PHP Setup

01 – Introduction to PHP