Skip to content

DEV FOR GOOD

A collection of tutorial, blogs and articles on code development with .NET
  • Home
  • Archive
  • Contact

DEV FOR GOOD

A collection of tutorial, blogs and articles on code development with .NET
  • Home
  • Archive
  • Contact

Find Distinct Elements From An Array

  • by Anirud Thapliyal
  • May 5, 2020
  • .NET

Here we are going to find out the distinct elements from an array using: For Loop LINQ In order to execute the code I’ve created… Read More »Find Distinct Elements From An Array

Swap Two Numbers Without Using Temp Variable

  • by Anirud Thapliyal
  • May 5, 2020
  • .NET

Here, we are going to swap 2 integers without using any intermediate or temporary variable. In order to execute the code I’ve created a simple… Read More »Swap Two Numbers Without Using Temp Variable

Find Elements Present In First Array But Missing Second Array Using For Loop

  • by Anirud Thapliyal
  • May 5, 2020
  • .NET

In order to execute the code I’ve created a simple console application to print out the result. Please find complete code below: int[] firstArray =… Read More »Find Elements Present In First Array But Missing Second Array Using For Loop

Check If A Given Number Is Prime Or Not

  • by Anirud Thapliyal
  • May 5, 2020
  • .NET

In order to execute the code I’ve created a simple console application to print out the result. Please find complete code below: Input number: 113… Read More »Check If A Given Number Is Prime Or Not

Reverse A Given Number Using While Loop

  • by Anirud Thapliyal
  • May 5, 2020
  • .NET

In order to execute the code I’ve created a simple console application to print out the result. Please find complete code below: Input number: 10012… Read More »Reverse A Given Number Using While Loop

Check If A Given Number Is Palindrome Or Not Using While Loop

  • by Anirud Thapliyal
  • May 5, 2020May 5, 2020
  • .NET

We will check if a given number is a palindrome or not using while loop. In order to execute the code I’ve created a simple… Read More »Check If A Given Number Is Palindrome Or Not Using While Loop

Check If A Given String Is Palindrome Or Not Using Loop

  • by Anirud Thapliyal
  • May 5, 2020May 5, 2020
  • .NET

I will check whether the given string is a palindrome or not with 2 options using while and for loop. It is a simple strategy… Read More »Check If A Given String Is Palindrome Or Not Using Loop

Reverse A Given String Using For Loop

  • by Anirud Thapliyal
  • May 5, 2020May 5, 2020
  • .NET

Here we will see 2 variants of for loop to reverse a given input string. In order to execute the code I’ve created a simple… Read More »Reverse A Given String Using For Loop

Reverse A Given Integer Array Using Loop

  • by Anirud Thapliyal
  • May 5, 2020May 5, 2020
  • .NET

We are going to find how to reverse an integer array using loop. We will use while and for loop in this post. The approach… Read More »Reverse A Given Integer Array Using Loop

Print Fibonacci Series For A Given Length Using For Loop

  • by Anirud Thapliyal
  • May 5, 2020May 5, 2020
  • .NET

We are going to print Fibonacci Series of the user provided length. In order to execute the code I’ve created a simple console application to… Read More »Print Fibonacci Series For A Given Length Using For Loop

  • 1
  • 2
  • Next »

Copyright © DEV FOR GOOD 2020 | Disclaimer, Terms Of Use, Privacy Policy & Affiliate Disclosure