Multiple of Matrix in c Multiple of Matrix in c #include <stdio.h> // Function to multiply two matrices void multiplyMatrices(int firstMatrix[10][10], int secondMatrix[10][10], int […]
Read moreCategory: Coding
Swapping 2 elements of Array
Swapping 2 elements of Array Swapping 2 elements of Array #include<stdio.h> void swap ( int arr[ ] ); int temp= arr [0]; arr [0] […]
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 moreSum of all Elements in Array
Sum of all Elements in Array Sum of all Elements in Array The sum of all elements in the array : #include<stdio.h> int main() […]
Read moreColourful firework π
window.onload = () => { const canvas = document.createElement(“canvas”); const ctx = canvas.getContext(‘2d’); const GRAVITY = 0.05; const FRECTION = 0.99; […]
Read moreFlowchart
Flowchart Flowchart Flowchart are nothing but the graphical representation of the data or the algorithm for a better understanding of the code visually. It […]
Read morePython First Program
Python First Program Python First Program print(“Hello, World!”) Topics Covered : python programming learn python programming python […]
Read moreAlgorithm
Algorithm Algorithm Before coding a program , the user needs to write the step by step procedure which is known as an Algorithm. “Algorithm is […]
Read moreProgram for diamond shape π
#include <iostream> using namespace std; class A { public: Β Β void show() { Β Β Β Β cout << “Diamond pattern: “; Β […]
Read moreSwaping of 2 numbers
Swapping of 2 numbers Swapping of 2 numbers #include<stdio.h> int main() { int a ; printf(“Enter a :Β “); scanf(“%d,&a); int b ; printf(“Enter […]
Read more
Recent Comments