Example & Tutorial understanding programming in easy ways.

How i take only positive integer from the user input?

We have two method to do this:


- Apply condition if the input is negative then make it positive

- Or, declared that integer value as  unsigned  like unsigned int var;

Read More →