Calling a Function in Python After creating a function in Python we can call it by using the name of the functions Python followed by parenthesis […]
Read moreCategory: Laptops
Program To Find Area and Perimeter of Rectangle
Program To Find Area and Perimeter of Rectangle Program To Find Area and Perimeter of Rectangle #include<iostream> using namespace std; int areaRectangle(int a, int […]
Read moreProgram to Reverse a Number in C++
Program to Reverse a Number in C++ Program to Reverse a Number in C++ #include <stdio.h> using namespace std; int main() { int n, […]
Read moreFind factorial of a number in C++
Find factorial of a number in C++ Find factorial of a number in C++ #include <iostream> using namespace std; int main() { int n; […]
Read moreC program to copy contents of one file to another file
#include <stdio.h> #include <stdlib.h> // For exit() int main() { FILE *fptr1, *fptr2; char […]
Read moreProgram to concatenate two string without using strcat
#include <stdio.h> int main() { // Get the two Strings to be concatenated char str1[100] = “Good”, str2[100] = “morning”; […]
Read moreProgram to find largest element in 2D Array
Program to find largest element in 2D Array Program to find largest element in 2D Array #include<stdio.h> int main() { int r; […]
Read moreProgram in Switch Statement
Program in Switch Statement Program in Switch Statement Switch statements : Switch case statements can be used to execute the condition code based on the […]
Read moreColourful firework 🎆
window.onload = () => { const canvas = document.createElement(“canvas”); const ctx = canvas.getContext(‘2d’); const GRAVITY = 0.05; const FRECTION = 0.99; […]
Read morePython First Program
Python First Program Python First Program print(“Hello, World!”) Topics Covered : python programming learn python programming python […]
Read more
Recent Comments