Wednesday, April 17, 2024
Home Tags C

Tag: C

Lab Course – C

Lab Course – C

0
Lab Course – C Lab Course Manual Exercise 1 Set A Apply all the three program development steps for the following examples. 1. Accept dimensions of a cylinder...
Sort Array in ascending order in C

Array in ascending order in C

0
Array in ascending order in C Problem statement Given an array, sort in ascending order. Solution Use two for loops, Outer for loop for preserving index and the...
Playingwithcards

Playing with Characters – HackerRank Solutions

0
Playing with Characters - HackerRank Solutions Problem statement Objective: This challenge will help you to learn how to take a character, a string and a sentence as...
Prime Number program in C

Prime Number program in C

0
Prime Number program in C A prime number is a positive integer that is divisible only by 1 and itself. For example: 2, 3, 5, 7,...
C program to find the squares of natural numbers using a do while statement

C program to find the squares of natural numbers using a...

0
C program to find the squares of natural numbers using a do while statement- Natural numbers are all the positive integers that span from 1...
C program to find the squares of natural numbers from 1 to n

C program to find the squares of natural numbers from 1...

0
C program to find the squares of natural numbers from 1 to n: Natural numbers are all the positive integers that span from 1 to...
C program to Check whether a Number is Perfect or Not

C program to Check if a Number is Perfect or Not

0
C program to Check if a Number is Perfect A number is Perfect, if sum of all it's divisors is equal to the original number. Example.   ...

Queue Implementation using Array

0
Queue Implementation using Array // C Program to Implement a Queue using an Array #include <stdio.h> #include <stdlib.h> #define MAX 20 void insert(); void delete (); void display(); int queue_array; int rear =...
C program to Check whether a Number is Armstrong or Not

Armstrong Number in C

0
C program to Check whether a Number is Armstrong or Not A number is Armstrong, if sum of it's digit raised to power of total...

C program to Find the Sum of two Matrices

0
C program to Find the Sum of two Matrices Problem Statement: Given two multi-dimensional arrays, also called as matrices, find their Sum. // C program to...

Latest Post

Number Series Set I

Number Series Set II

Aptitude