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 →

Create a website or blog at WordPress.com

Up ↑

Design a site like this with WordPress.com
Get started