Home Blog
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...
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...
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
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...
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...
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....
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...