[Solved] Passing string to a function when unsigned int expected in C
The whole point of a type in a language like C is that it describes some well-defined, useful set of values. A value of type unsigned int can hold any integer in a range defined by your compiler and processor. This is typically a 32-bit integer, meaning that an unsigned int can hold any integer … Read more