MD5 Hashing using C#

Posted on Sat 24 August 2019 in C# • Tagged with C#, Programming

Its common now a days that all the passwords are being encrypted in order to prevent data theft. So the passwords are being encrypted, the most common and most secure encryption method is MD5 hashing.
MD5 hashing stands for Message Digest algorithm 5. The idea of MD5 algorithm is to …


Continue reading

Structures And User Defined Data Types (Part - I)

Posted on Tue 05 August 2014 in C • Tagged with C Programming, structures, User Defined Data Types

Howdy folks, hope you're doing well. We've already discussed about 1D Arrays and their memory organization and further about 2D arrays and multidimensional arrays. In case you missed it, read them first. Coming to this tutorial, we'll be discussing the way to develop our own data types in the C …


Continue reading

Learning About 2D And Multidimensional Arrays

Posted on Thu 24 July 2014 in C • Tagged with 2D, Arrays, Multidimensional Arrays

Well, I'm glad you reached at this point, we've already discussed about 1D arrays and the memory organization, and in this post, we'll know about 2D arrays and Multidimensional Arrays. They are not very much different from 1 D arrays as we looked in the last tutorial. So, let's start …


Continue reading

Learning About 1 Dimensional Arrays (1 D Arrays)

Posted on Sat 12 July 2014 in C • Tagged with 1D Arrays, Arrays

You may have heard of arrays or "tuples" before, if you've learnt any programming language. If not, then don't worry, you'll learn everything about them in this tutorial and how are they used in C to handle large amounts of data of same data type effectively and easily. So, let's …


Continue reading

[Ultimate Guide] What are loops in programming and how are they important?

Posted on Thu 27 March 2014 in C • Tagged with C, Do While Loop, Entry Controlled, Exit Controlled, For Loop, Loops, Programming, While Loop

Welcome everyone to yet another tutorial on C Programming language. In this tutorial we'll be learning about a great concept of loops. Most of the programming languages would use exactly the same syntax for loops, so understand this carefully. Loops provide with great utility and power and saves from a …


Continue reading

Storage Classes in C language

Posted on Mon 17 March 2014 in C • Tagged with Auto, C language, Extern, Register, Static, Storage Classes

In the previous tutorials, we have discussed about the conditional statements. In this tutorial we'll be learning about something known as Storage Classes in the C language. Every variable you define in the C language is generally associated with a Storage class which basically defines the Scope and lifetime of …


Continue reading

What is scope and lifetime of a variable in C language

Posted on Mon 10 March 2014 in C • Tagged with C language, Lifetime, Scope, Variables

Welcome to your next tutorial, here we would be discussing about the scope and lifetime of a variable, and how exactly they are similar yet different from each other. We'll try to understand all this by using an example to understand the concepts in a better way.

Scope and life time of a variable in C programming language

So, let's understand …


Continue reading

Conditional Statements : Switch Case

Posted on Sat 01 February 2014 in C • Tagged with C language, Conditional, Switch

In the previous tutorial, we've discussed about if - else and nested if - else statements and how we can use them to test certain conditions and execute a block of code depending on whether the condition becomes true or false. In this tutorial, we'll be covering another Conditional Statement used in …


Continue reading

Understanding Conditional Statements: if else

Posted on Sun 12 January 2014 in C • Tagged with Conditional, If-Else, Nested

In this tutorial, we'll uncover something much interesting which would simplify our work as a programer and help us to check if a given condition is true or not. We'll study about the Conditional statements like if - else , if-else if-else, nested if -else and switch (continued in next tutorial)

Understanding …


Continue reading

Operators in the C language

Posted on Thu 09 January 2014 in C • Tagged with C language, Operators

Welcome to your next tutorial in the C language,  today, we’ll discuss about operators in the C language. We have already discussed about Variables in C language, and how we can store data in variables input by user, next we may need to update this data , or make various …


Continue reading