Searching an element in an Array Searching an element in an Array Question: Write a program to search a how many […]
Read moreAuthor: Sahil Prajapati
Transpose 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 moreTo check weather a number is Prime or Not
To check weather a number is Prime or Not To check weather a number is Prime or Not Question: Write a C program […]
Read moreReversing the Array
Reversing the Array Reversing the Array Write a program to takeΒ input of integer array of size 5 and display the array […]
Read moreTernary Operator
Ternary Operator Ternary Operator Syntax: Condition ? Expression 1(True)Β :Β Expression 2(False) ; Program: To check wheather the given number is even or odd […]
Read moreFactorial of a number using Recursion
Factorial of a number using Recursion Factorial of a number using Recursion #include <stdio.h> //Function Prototype Declaration int factorial (int a); int main() […]
Read more
Recent Comments