Showing ASCII number of alphabet letter in C
To create string in C, we commony we use char. For example : 1char alphabet = "a" At this point, char in C basically represents a byte. So yes, “a” equal with one byte. Just remember, everything you see char in C it’s mean byte. Another things we should know is string structure in C [...]