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