bored of doing repeated tasks in your browser like account creation, submitting forms etc, you can automate all these by using a simple python program with the help of selenium and chrome web driver prerequisites before you start like always you need to have a python version installed. if not, visit python.org and download the... Continue Reading →
creating a Pyramid using PyAutoGUI in Python
PyAutoGUI is a python library for GUI automation, and today we are going to perform an automated drawing of a pyramid like above using PyAutoGUI, Lets see how to do that Before we start , we need to meet some prerequisite Install Python visit https://www.python.org/ and download the latest or stable version and install it... Continue Reading →
Basic C Programmes
Addition of two numbers #include <stdio.h> #include <conio.h> void main() { clrscr; int a,b,c; printf("entr the value of a "); scanf("%d",&a); printf("enter the value of b "); scanf("%d",&b); c=a+b; printf("the sum is %d",c); getch(); } output ---------- Enter the value of a 5 Enter the values... Continue Reading →