Print alternate element in an Array Print alternate element in an Array Code : #include<stdio.h> int main(){ int n; printf(“Enter size […]
Read moreCategory: C
Swapping two number using Function (Call By Reference)
Swapping two number using Function (Call By Reference) Swapping two number using Function (Call By Reference) Question: Write a program to swap two […]
Read moreFind 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 more
Recent Comments