Swapping two number using Function (Call By Reference) Swapping two number using Function (Call By Reference) Question: Write a program to swap two […]
Read moreMonth: November 2023
Find the day of the week you were born!
// Please enter your birthday in this // format(including spaces): // DD MM YYYY // 22 01 1997 #include <iostream> using namespace std; int […]
Read moreTranspose of matrix in 2d Array
Transpose of matrix in 2d Array Transpose of matrix in 2d Array Q. Write a program to print the transpose of the matrix entered […]
Read moreSearching an element in an Array
Searching an element in an Array Searching an element in an Array Question: Write a program to search a how many […]
Read moreTranspose of a Matrix
Transpose Of a Matrix Transpose Of a Matrix Question: Write a program to take input of a Matrix and then print the Transpose of […]
Read moreMultiple of Matrix in c
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 moreSwapping 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 more
Recent Comments