Sudhir sharma has Published 1206 Articles

Sum of squares of first n natural numbers in C Program?

sudhir sharma

sudhir sharma

Updated on 08-Aug-2019 08:01:53

11K+ Views

The sum of squares of the first n natural numbers is found by adding up all the squares.Input - 5Output - 55Explanation - 12 + 22 + 32 + 42 + 52There are two methods to find the Sum of squares of first n natural numbers −Using Loops − the code loops through ... Read More

C++ Programming for Smallest K digit number divisible by X?

sudhir sharma

sudhir sharma

Updated on 08-Aug-2019 07:55:02

84 Views

Smallest K digit number that divisible by X is found using the formula by checking divisible by X. The formula works in the following way −Compute minimum K digit number [min] for example: 10/100/1000 etc.Now find if min is divisible by X. if yes, then this is the answer.If not, ... Read More

Write you own Power without using multiplication(*) and division(/) operators in C Program

sudhir sharma

sudhir sharma

Updated on 08-Aug-2019 07:44:49

365 Views

Power function is calculated using the times multiple i.e. 5n is 5*5*5… n times. For this function, to work properly without using multiplication(*) and division(/) operators we will use nested loops that add the numbers n number of time.Example#include using namespace std; int main() {    int a= 4 ... Read More

Sum of squares of the first n even numbers in C Program

sudhir sharma

sudhir sharma

Updated on 08-Aug-2019 07:41:42

1K+ Views

The sum of squares of the first n even numbers means that, we first find the square and add all them to give the sum.There are two methods to find the sum of squares of the first n even numberUsing LoopsWe can use loops to iterate from 1 to n ... Read More

To count Vowels in a string using Pointer in C++ Program

sudhir sharma

sudhir sharma

Updated on 08-Aug-2019 07:36:50

1K+ Views

Finding the number of vowels in a string using pointers need you to understand string, vowels and how to use pointer with string.String is an array of characters. And vowels are characters from the set {a, e, i, o, u}. Pointer is a variable that stores the value of memory ... Read More

5 Different methods to find the length of a string in C++?

sudhir sharma

sudhir sharma

Updated on 08-Aug-2019 07:07:55

2K+ Views

A sequence of characters or a linear array of character is known as String. Its declaration is same as define other arrays.Length of array is the number of characters in the String. There are many in-built method and other methods to find the length of string. Here, we are discussing ... Read More

A C Puzzle in C Programming?

sudhir sharma

sudhir sharma

Updated on 08-Aug-2019 07:00:46

1K+ Views

In this C programming puzzle you need to merge two numbers. You cannot use any arithmetic, string or other functions.So In This C Puzzle −Input : 12 , 54 Output : 1254Optimum solution to this C programming puzzle is to use the Token-pasting operator define.Define a macros using this ## ... Read More

A Boolean Array Puzzle in C?

sudhir sharma

sudhir sharma

Updated on 08-Aug-2019 06:24:27

146 Views

This an array based puzzle that need you to change all the numbers of an array the contains two elements to 0. One element of the array is 0 and other may or may not be 0.To solve this puzzle the program needs to find the non-zero element and change ... Read More

Abundant Number in C ?

sudhir sharma

sudhir sharma

Updated on 07-Aug-2019 14:44:39

2K+ Views

An abundant Number (also known as excessive number) is a number in the number theory which itself is smaller than the sum of all its proper divisors. For example, 12 is an abundant Number : divisors 1, 2, 3, 4, 6 , sum =16 >12.The difference between the sum of ... Read More

abs() function for complex number in c++ ?

sudhir sharma

sudhir sharma

Updated on 07-Aug-2019 14:41:04

356 Views

The abs function in C++ is used to find the absolute value of a complex number. The absolute value of a complex number (also known as modulus) is the distance of that number from the origin in the complex plane. This can be found using the formula −For complex number ... Read More

Advertisements