Sunidhi Bansal has Published 1100 Articles

C Program for Reversed String Pattern

Sunidhi Bansal

Sunidhi Bansal

Updated on 21-Oct-2019 11:09:27

641 Views

Given a string str, our task is to print its reversed pattern. The Pattern will be incremental in reversed order, and when the string is completed fill ‘*’ in the remaining places.Like we enter a string “abcd”, now in first line we have to print “a” then in next line ... Read More

C Program to check if an Array is Palindrome or not

Sunidhi Bansal

Sunidhi Bansal

Updated on 21-Oct-2019 11:05:02

11K+ Views

Given an array arr[] of any size n, our task is to find out that the array is palindrome or not. Palindrome is a sequence which can be read backwards and forward as same, like: MADAM, NAMAN, etc.So to check an array is palindrome or not so we can traverse ... Read More

C Program to check Plus Perfect Number

Sunidhi Bansal

Sunidhi Bansal

Updated on 21-Oct-2019 10:56:13

199 Views

Given a number x with n number of digits, our task is to check whether the given number’s Plus Perfect number or not. In order to check that the number is Plus Perfect Number we find the nth power of every digit d (d^n) and then sum all the digits, ... Read More

C Program to convert first character uppercase in a sentence

Sunidhi Bansal

Sunidhi Bansal

Updated on 18-Oct-2019 14:22:35

3K+ Views

Given a string and with mixed case, i.e with both uppercase and lower case, the task is to covert the first character to uppercase rest in lowercase if it’s in upper case.Let’s understand it in depth with the help of a simple example.Like we are given a string “hElLo world”, ... Read More

C Program to check if a date is valid or not

Sunidhi Bansal

Sunidhi Bansal

Updated on 18-Oct-2019 14:06:27

3K+ Views

Given date in format date, month and year in integer. The task is to find whether the date is possible on not.Valid date should range from 1/1/1800 – 31/12/9999 the dates beyond these are invalid.These dates would not only contains range of year but also all the constraints related to ... Read More

C Program to check Strong Number

Sunidhi Bansal

Sunidhi Bansal

Updated on 18-Oct-2019 13:25:15

7K+ Views

Given a number ‘n’ we have to check whether the number given is Strong Number or not.Strong number is a number whose sum of all digits’ factorial is equal to the number ‘n’. Factorial implies when we find the product of all the numbers below that number including that number ... Read More

C Program to check if matrix is singular or not

Sunidhi Bansal

Sunidhi Bansal

Updated on 18-Oct-2019 13:15:52

751 Views

Given a matrix as mat[row][column], our task is to check whether the given matrix is singular or not through a function and display the result.Singular matrix is a matrix whose determinant is zero and if the determinant is not zero then the matrix is non-singular.So to find whether the matrix ... Read More

Program to compute Log n in C

Sunidhi Bansal

Sunidhi Bansal

Updated on 18-Oct-2019 13:05:04

424 Views

Given with the value of n as an input and the task is to compute the value of Log n through a function and display it.Logarithm or Log is the inverse function to exponentiation which means to calculate log the raised power must be calculated as a base.IF  $$\log_b x\;\:=\: ... Read More

Products of ranges in an array in C

Sunidhi Bansal

Sunidhi Bansal

Updated on 18-Oct-2019 12:57:04

490 Views

Given with array, L, R, P as an input and the task is to find the ranges between L and R with the product under modulo as output and display itAs given in the figure we have array of elements and L which is a Left value as 2 and ... Read More

C Program for diamond pattern with different layers

Sunidhi Bansal

Sunidhi Bansal

Updated on 18-Oct-2019 12:40:05

214 Views

Given with the number and the task is to generate the diamond pattern with the given n different layers and display it.ExampleInput: n = 3Output:Approach used in the below program is as follows −Input the number of rowsAnd in this pattern there are ((2 * n) + 1) rowsNumber of ... Read More

Advertisements