Sudhir sharma has Published 1206 Articles

C Program to Check if a Given String is a Palindrome?

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 12:29:30

9K+ Views

A palindrome is a word, number, phrase, or other sequences of characters which reads the same backward as forward. Words such as madam or racecar or the number 10801 are a palindrome.For a given string if reversing the string gives the same string then we can say that the given ... Read More

Concatenate a string given number of times in C++ programming

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 12:24:08

594 Views

A program to concatenate a string a given number of times will run the string concatenate method n number of times based on the value of n.The result would be string repeated a number of times.Examplegiven string: “ I love Tutorials point” n = 5OutputI love Tutorials pointI love Tutorials ... Read More

Bitset all() function in C++ STL

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 12:21:03

110 Views

The bitset all() function an inbuilt function of the C++ STL( Standard Template Library). This function returns a Boolean value. The returned value is true if all the bits of the calling bitset are 1 else it will return false.The function does not accept any parameter and returns a Boolean ... Read More

bitset::flip() in C++ STL

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 12:18:27

424 Views

The bitset flip() method is an inbuilt method of C++ STL( Standard Template Library). It flips the bits of the calling bitset. This method flips all 0’s to 1’s and all 1’s to 0’s, which means it reverse each and every bit of the calling bitset when no parameter is ... Read More

Write a program to Delete a Tree in C programming

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 12:11:42

1K+ Views

To delete a tree we need to traverse each node of the tree and then delete each of them. this one by one delete every node of the tree and makes it empty. For this, we need to use a method that traverses the tree from bottom to up so ... Read More

Write a function that returns 2 for input 1 and returns 1 for 2 in C programming

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 12:08:13

253 Views

A function that returns 2 for input 1 and 1 for input 2 is to be made. This function can be made in many ways based on the logic you use. The easiest way to do this is to use a conditional statement that if the number is 1 then ... Read More

Ways to paint N paintings such that adjacent paintings don’t have same colors in C programming

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 12:04:02

642 Views

In this problem, you are given N painting and we have m color that we can make paintings with and we need to find the number of ways in which we can draw the painting such that none of the same color paintings are to each other.The program’s output can ... Read More

Surface Area and Volume of Hexagonal Prism in C programming

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 12:01:50

279 Views

The surface area of any figure is the total area that it's surface cover.A hexagonal prism is a three-dimensional figure that has a hexagon at both its ends. exam on prism looks like -In mathematics, Hexagonal prism is defined as three dimensional figure with 8 faces, 18 edges, 12 vertices.Surface ... Read More

Sums of ASCII values of each word in a sentence in c programming

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 11:49:06

302 Views

The ASCII value of the ward is the integer presentation based on ASCII standards. In this problem, we are given a sentence and we have to calculate the sum of ASCII values of each word in the sentence.For this we will have to find the ASCII values of all the ... Read More

Sum triangle from an array in C programming

sudhir sharma

sudhir sharma

Updated on 09-Aug-2019 11:46:46

571 Views

The sum triangle from an array is a triangle that is made by decreasing the number of elements of the array one by one and the new array that is formed is with integers that are the sum of adjacent integers of the existing array. This procedure continues until only ... Read More

Advertisements